PDA

View Full Version : Simultaneous linear equations in two variables


vprasad01
Sep 21, 2008, 01:38 PM
5x+3y=2
2x+y=1

how to do it in the easy way?

Curlyben
Sep 21, 2008, 01:41 PM
solve one of them for X then feed that result into the other ;)

Unknown008
Sep 23, 2008, 05:05 AM
But that will make fractions arise. I suggest make 'y' the subject of formula for the second equation, then replace the function into the first equation.

Credendovidis
Sep 30, 2008, 04:56 PM
5x+3y=2 / 2x+y=1 / how to do it in the easy way?
Just make one of the unknowns equal in quantity : lets make both

Multiply each item in ( 2x +y = 1 ) with 3 --> 6x + 3y = 3

Solve 3y --> 3y = 3 - 6x

Replace this into the first equation ( 5x + 3y = 2 ) ----> 5x + (3 - 6x) = 2

Solve : 5x + 3 - 6x = 2 ----> 5x - 6x = 2 -3 ----> -1x = -1 ----> x = 1

Fill that in in any of the equations and you'll find that y = -1

Simple, isn't it ?

:)