SOLUTION: (by matrices) 3x+2y=3 5x-4y=27

Algebra ->  Matrices-and-determiminant -> SOLUTION: (by matrices) 3x+2y=3 5x-4y=27      Log On


   



Question 1005940: (by matrices) 3x+2y=3
5x-4y=27

Answer by AnlytcPhil(1806) About Me  (Show Source):
You can put this solution on YOUR website!
There are two ways to do this by matrices.  
Augmented matrix (Gauss-Jordan) and inverse
method.  I picked the 1st method:

system%283x%2B2y=3%2C%0D%0A5x-4y=27%29

We abbreviate that system with this augmented matrix:

%28matrix%282%2C4%2C%0D%0A3%2C2%2C%22%7C%22%2C3%2C%0D%0A5%2C-4%2C%22%7C%22%2C27%29%29

We want 0's where the 2 and 5 are.
and 1's where the 3 (upper left corner) 
and -4 are.

We'll get the 0's first.

To get a 0 where the 5 is,
multiply row 1 by -5 and 
row 2 by 3 and replace row 2.

Here's the work:      -15 -10 | -15
                       15 -12 |  81
                     ---------------
                        0 -22 |  66

Since it turns out that that all those numbers
can be divided through by -22, we will do that
too, getting 

                        0   1 |  -3 

and replace row 2 by that:

%28matrix%282%2C4%2C%0D%0A3%2C2%2C%22%7C%22%2C3%2C%0D%0A0%2C1%2C%22%7C%22%2C-3%29%29

Then we get a 0 where the 2 is by multiplying the
second row by -2 and adding it to the first row:

Here's the work:        3   2 |   3
                        0  -2 |   6
                     ---------------
                        3   0 |   9

Since it turns out that that all those numbers
can be divided through by 3, we will do that
too, getting 

                        1   0 |   3


and replace row 1 by that:

%28matrix%282%2C4%2C%0D%0A1%2C0%2C%22%7C%22%2C3%2C%0D%0A0%2C1%2C%22%7C%22%2C-3%29%29

This augmented matrix is the abbreviation for 
this system:

system%281x%2B0y=3%2C%0D%0A0x%2B1y=-3%29

or x = 3
   y = -3

Edwin