stilite
I am hoping someone can clarify an issue that I am having with my study book for a basic math concept.
The book author states that:
"Often on the GMAT, you can solve a system of two equations in two unknowns by merely
adding or subtracting the equations—instead of solving for one of the variables and then
substituting it into the other equation."For the example he provides, this approach (of course) works seamlessly as seen in
Example #3:
However,...In the very next explanation of the
Method of Substitution, the example given does not seem to work if using the
Adding/Subtracting of Equations method.
So, why is this so?...and if they do not compliment each other, then which am I supposed to know to use and/or what am I missing here?
Many thanks.
What book is this? It really ought to explain when to use each approach, and it certainly should explain how to solve a system of two linear equations by adding/subtracting them. In general, substitution should be viewed as a fallback only; if you're good at adding/subtracting equations, that's normally faster. When your equations are linear (no powers/roots/etc), then you'll want to get the same number in front of one of the two letters in each equation, by multiplying on both sides of one or both equations. So with the following:
2x + y = 10
5x - 2y = 7
if we multiply the first equation by 2, we can then add the two equations to eliminate y:
4x + 2y = 20
5x - 2y = 7
9x = 27
x = 3
Now substituting this value of x into either of the original equations, you can find that y = 4. This tends to be faster than substitution, especially if the numbers in your equation are awkward, since substitution will often force you to work with ugly fractions.
That said, if your equations are of fundamentally different types - if one contains squares, for example, and the other does not - substitution may be your only option, which is why you would want to know the technique. For example, if you cannot see another way to solve the following two equations:
x^2 + y^2 = 25
x + y = 7
substitution will certainly work. Rewrite the second equation as x = 7 - y and plug that in for x into the first equation to get
(7 - y)^2 + y^2 = 25
49 - 14y + y^2 + y^2 = 25
2y^2 - 14y + 24 = 0
y^2 - 7y + 12 = 0
(y - 4)(y - 3) = 0
so y = 4 (and x = 3), or y = 3 (and x = 4).