I have a 4x4 matrix and I want to find the triangular matrix (lower half entries are zero).
A=[2−8683−9510−301−21−406]
Here are the elementary row operations I performed to get it into triangular form.
row swap rows 1 and row 4
r2−3⋅r1 replacing r2
r3+3⋅r1 replacing r3
r4−2⋅r1 replacing r4
I get this matrix
A=−[1−406035−80−12116006−4]
I then did 4⋅r2+r3 to replace r3 and got
A=−[1−406035−80021−16006−4]
I then did −21⋅r4+6⋅r3 to replace r4 and got
A=−[1−406035−80021−16000−12]
I am not sure if I did this correctly but the determinant of the matrix should be -36. When I multiply the diagonal entries it isn't -36. I can't figure out what I am doing wrong.
Answer
"I then did -21*row 4 + 6*row 3 to replace row 4 and got"
This is a determinant altering operation and not an elementary operation.
Don't write that A equals something which isn't A.
Picking up where you errored and using the same idea you had one gets:
[1−406035−80021−16006−4]⇝
Making the proper compensation yields
\det(A)=-\dfrac{1\cdot 3\cdot (6\cdot 21)\cdot (-12)}{-21\cdot 6}=-36.
No comments:
Post a Comment