Jagr wrote:here is #2
Code: Select all
1. x+2y=4 Basic
2. x+y=2 Division
3. y=2-x Move one of the variables :)
y^2-xy=7 Basic
4. y^2-xy=7 .You want to put the previous equation into the more complicated one.
5. (2-x)^2 -x(2-x)=7 .Now it looks like this! ;)
6. (2+x)(2-x)-2x+x^2=7 .Continue to solve :roll:
7. 4+2x-2x+x^2-2x+x^2=7 .Boring.... lol
8. x^2+x^2+2x-2x-2x+4-7=0 .Re-arrange.... again
9. 2x^2-2x-3=0 .Where am I going again?.... Oh right. lol That is Theoretically Correct. Your son should be able to solve it from there. ;)
The solution above is incorrect. step 2 is incorrect and so is step 7.
Jagr's method of solving the is problem is correct.
Here is the correct solution.
Given:
x + 2y = 4 -> x + 2y -4 = 0
y^2 - xy = 7 -> y^2 -xy - 7 = 0
Taking the 1st equation:
x = -2y + 4
By Substitution:
the 2nd equation becomes:
y^2 - (-2y + 4)y - 7 = 0
Multipiling:
y^2 - ( -2y^2 + 4y ) - 7 = 0
Remember the sign:
y^2 + 2y^2 - 4y - 7 = 0
Combine like terms:
3y^2 -4y - 7 = 0
Now the equation is in quadratic form:
3y^2 -4y - 7 = 0
There is now a couple of ways you can get to the roots.
The brainiac

:
Mutiply the equation by 1/3:
1/3 ( 3y^2 - 4y - 7 = 0 )
Giving:
y^2 - 4/3y - 7/3 = 0
Now your roots will be in the form:
( y +/- ? )(y +/- ?? )
WHERE
? * ?? is the negative number -7/3 so either ? or ?? must be negative
so ( y + ? )(y - ??)
AND
? + ?? is the negative number -4/3
The combination of ? and ?? is:
( y + 1 )( y - 7/3 )
Check by expansion:
y*y - 7/3y + y -7/3
note: y = 3/3y
Combine like terms:
y^2 -4/3y -7/3 = 0
Therefore:
y1 = -1 , y2 = 7/3
Alternate Way:
The Quadratic formula:
y1 = 1/2a ( -b + SquareRoot( b^2 - 4ac )
y2 = 1/2a ( -b - SquareRoot( b^2 - 4ac )
The equation in quadratic form:
ay^2 + by + c = 0
3y^2 - 4y - 7 = 0
y1 = 1/2*3 ( -( -4 ) + SquareRoot( (-4)^2 - (4 * 3 * -7) )
y1 = 1/6 ( 4 + SquareRoot ( 16 - ( -84 ) )
y1 = 1/6 ( 4 + SquareRoot( 16 + 84 ) )
y1 = 1/6 ( 4 + SquareRoot( 100 ) )
y1 = 1/6 ( 4 + 10 )
y1= 7/3
y2 = 1/6 ( -( -4 ) - SquareRoot( 100 ) )
y2 = 1/6 ( 4 -10 )
y2 = 1/6 (-6 )
y2 = -1
Now back to the Original Equations:
x + 2y -4 = 0
y^2 -xy - 7 = 0
Taking the 1st equation:
When y = y1
then:
x1 + 2( 7/3 ) - 4 = 0
x1 + 14/3 -4 = 0
x1 = -14/3 + 4
x1 = -14/3 + 12/3
x1 = -2/3
When y = y2
then:
x2 + 2( -1 ) -4 = 0
x2 -2 -4 = 0
x2 = 2 + 4
x2 = 6
Therefore the solution set of the quadratic system:
x + 2y -4 = 0
y^2 -xy - 7 = 0
is:
(-2/3, 7/3), (6, -1)