You mean this is a matrix, and you want to reduce it? I'm going to assume it's a 4x4 matrix taken from 4 equations with 4 unknowns, all set to zero.
Add the first row to the second and fourth rows:
[1, -1, 2, 3]
[0, -1, 3, 1]
[3, 2, 1, 4]
[0, -3, 2, 0]
Multiply the first row by -3 (to get [-3, 3, -6, -9]) and add this to the second row:
[1, -1, 2, 3]
[0, -1, 3, 1]
[0, 5, -5, -5]
[0, -3, 2, 0]
We can simply the third row by dividing it by 5:
[1, -1, 2, 3]
[0, -1, 3, 1]
[0, 1, -1, -1]
[0, -3, 2, 0]
Now take the third row and add it to the first and second row. Then take the third row, multiply it by 3, and add this to the fourth row:
[1, 0, 1, 2]
[0, 0, 2, 0]
[0, 1, -1, -1]
[0, 0, -1, -3]
Divide the second row by 2. Add it to the third and fourth rows. Then multiply the second row by -1 (after already dividing by 2) and add it to the first:
[1, 0, 0, 2]
[0, 0, 1, 0]
[0, 1, 0, -1]
[0, 0, 0, -3]
Divide the last row by -3. Now add it to the third row, and add -2 times it to the first row. You get:
[1, 0, 0, 0]
[0, 0, 1, 0]
[0, 1, 0, 0]
[0, 0, 0, 1]
Swap the second and third rows, and you get the identity matrix. This shows that there's only ONE unique solution to the original set of 4 equations with 4 unknows, and that is the trivial solution (all variables = 0).
2007-01-26 14:11:39
·
answer #2
·
answered by Anonymous
·
0⤊
1⤋