I'm stuck with this problem, so I've got the following matrix:
A=[461031013−2−6−8]
Which gives me the following identity matrix of AI:
[4−λ610310−λ13−2−6−8−λ]
I'm looking for the Polynomial Characteristic Roots of the Determinant. I can
do this on pen and paper, but I want to make this into an algorithm which can work
on any given 3x3
matrix.
I can then calculate the Determinant of this matrix by doing the following:
Det(A)=4−λ|10−λ13−6−8−λ|=[(10−λ⋅−8λ)−(−6⋅13)]
I repeat this process for each of the columns inside the matrix (6, 10)..
Watching this video: Here
the guy factorises each of the (A) + (B) + (C) to this equation:
λ(λ2−6λ+8)=0
And then finds the polynomials: 1, 2, 4.. Which I understand perfectly.
Now, putting this into code and factorising the equation would prove to be difficult. So, I'm asking whether or not there is a simple way to calculate the determinant (using the method given here) and calculate the polynomials without having to factorise the equation.. My aim is to be left with 3 roots based on the Determinant.
Answer
I think a decently efficient way to get the characteristic polynomial of a 3×3 matrix is to use the following formula:
P(x)=−x3+[tr(A)]x2+[[tr(A)]2−tr(A2)]x+[[tr(A)]3+2tr(A3)−3tr(A)tr(A2)]
Where tr(A) is the trace of A, and A,A2,A3 are the matrix powers of A.
From there, you could use the cubic formula to get the roots.
there is some computational mistake below
In this case, we'd compute
A=(461031013−2−6−8)⟹tr(A)=6A2=(142438164056−10−24−34)⟹tr(A2)=20A3=(529614872160232−44−96−140)⟹tr(A3)=72
No comments:
Post a Comment