Linear Equation

asked 2017-04-25 15:10:17 +0200

Hospital gravatar image

Hello, Im new at here, and this will be my first question...

I have $$2x+4y=0$$ but don't know how to solve it. Can someone help me? Thanks!...

edit retag flag offensive close merge delete

Comments

Well, it looks like homework. In this case, the following sage code will not work to feel at home:

sage: var( 'x,y' );
sage: solve( 2*x + 4*y == 0, x )    # solve in x
[x == -2*y]
sage: solve( 2*x + 4*y == 0, y )    # solve in y
[y == -1/2*x]
dan_fulea gravatar imagedan_fulea ( 2017-04-25 20:19:42 +0200 )edit