Monday, October 15, 2018

linear algebra - The effect of elementary row operations on characteristic polynomial



I have a 3×3 matrix A for which I need to determine the characteristic polynomial.



Suppose I had det(A)=f. If I performed row operations on A I could manipulate f accordingly to find the determinant for the new matrix. So for example if I multiplied row 1 by k and swapped row 2 and row 3 the determinant for the new matrix would be given by 1×k×f.




My question: Could I simplify A by performing row operations on it,
then use the simplified A in (λI3A), calculate det(λI3A) and finally manipulate det(λI3A) according to the row operations that I did on the original A. So if I swapped row 1 and 3 to get the simplified A, I would multiply det(λI3A) by 1 in the end to get the final determinant.



Would this change the characteristic polynomial? If yes, why?


Answer



No, elementary matrix operations don't preserve the eigenvalues in general. As an example, consider A=I, where I is the 3×3 identity matrix.
det(λIA)=det(λII)=(λ1)3.



Now, lets construct B by swapping rows 1 and 3 while multiplying row 2 by 2 (as suggested in your comment), i.e.
B=(001020100),

and

det(λIB)=(x2)(x21)2(λ1)3=2det(λIA).



However, we could construct Bλ by starting with the matrix λIA, swapping rows 1 and 3 and multiplying row 2 by 2, i.e.
Bλ=(00λ102λ20λ100).


Then
detBλ=2(λ1)3=2det(λIA)

as expected.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...