|
||||||||||||
|
||||||||||||
| ||||||||||||
For a single 2x2 system the augmented matrix-row reduction method is overkill, but it's a useful technique. Other techniques are Cramer's rule, which is very slow for larger matrices but fast for 2x2, and simple row reduction which is faster if (as here) you are only looking for a single solution. Rewrite your problems as a matrix equation (note that one equation has to be rearranged. Stacks of square brackets represent a single tall square bracket.): [2 5][x]=[8 ] Then -1 and we must find the inverse matrix of [2 5] To do this we _augment_ it by sticking an identity matrix on the side [3 2 | 1 0] Now use row operations to turn the left side into an identity matrix; this same sequence turns the right side into the inverse. [1 2/3 | 1/3 0 ] (* 1/3) [1 2/3 | 1/3 0] [1 2/3 | 1/3 0] [1 0 | 1/7 -2/7] (-2/3 r2) and the right side is what (if you are familiar with Cramer's rule) you would have expected. [But this method is far faster for a 3x3 or 4x4 matrix if you use the usual method to find the determinant!] Plug this into (*): [x] = [1/7 -2/7] [8] = [-12/7] Now you do the same with your matrix! Good Hunting! | ||||||||||||
|
||||||||||||
Math Central is supported by the University of Regina and The Pacific Institute for the Mathematical Sciences. |