How do you use the addition and subtraction method to solve a linear system?

1 Answer
Nov 1, 2014

Let us solve the linear system below.

#{(3x+y=7),(x+2y=-1):}#

The goal is to eliminate one of the variables by addition or subtraction so that the value of the other variable can be found.

By multiply the first equation by 2,

#=> {(6x+2y=14),(x+2y=-1):}#

by subtracting the second equation from the first equation,

#=> 5x=15 => x=3#

By plugging #x=3# in the first equation of the original system,

#=> 3(3)+y=7 => 9+y=7 => y=-2#

Hence, the solution is #(x,y)=(3,-2)#.


I hope that this was helpful.