Fast method for finding Eigen values for a 2x2 Matrix
Feb 16, 2026
Introduction
The prusuit for finding eigen values, and the eigen vector for matrices can be very complicated under the scaling of dimensions, however, such as any probles, the lower the dimensions, the simpler they are to solve.
The issues of dimensions can be seen when it comes to topics such as determinants, which in a 2×2 case is very simply to solve, since it’s simply given by some matrix A
A=[acbd]
We then have that
∣A∣=a×d−b×c
However, when we scale the dimensions of the matrix up, we require more complex methods to solve such cases.
The generalized method
It can be noted, however, that just like the case of the determinant, that in the lower dimension case, there are easier way to solve for the. In the general case case, we have that the eigenvector is given by
the eigen values, of which it satify the following equation
Ax=λx
This is then solved by the following equation
A−λI=[acbd]−λ[1001]=[a−λcbd−λ]
Example
An example of this, can be the following case
A−λI=[72−15−4]−λ[1001]=[7−λ2−17−4−λ]
There is then solved for the characteristic polynomial, which is given by
Given that we now know the polynomial, we then wish to find the roots for it, which is the case of
λ2−3λ+2=0
If we inspect the terms, we know that we’re dealing with λ2 (obviously, it is a polynomial), and we have that there will be two cases, so we apply the quadratic formula, which is given by
2a−b±b2−4ac
In this case, we have that
abc=1=−3=2
Giving us
2(1)3±−32−4(1)(2)=23±9−8=23±1
So the two cases we have is
λ1λ2=23+1=23−1
Which gives us
λ1=24=2λ2=22=1
The fast method
For the fast method, we apply the average value of the diagonal, and the determinant of the matrix.
Average value of diagonal
avgdiag(A)=n1n=1∑Nann
for n∈N where N is is the dimension of a square matrix in RN×N
We then have that the eigen values are given by
λ=avgdiag(A)±(avgdiag(A))2−∣A∣
Example
We can use the example from before, we have that the matrix A is given by
A=[72−15−4]
So we have that, since the matrix is in RN×N that
avgdiag(A)=21(7−4)=1.5
We have that the determinant is given by
∣A∣=(7)(−4)−(−15)(2)=−28−(−30)=2
So we then get
λ=1.5±(1.5)2−2=1.5±2.25−2=1.5±0.25=1.5±0.5
Which gives us
λ1=1.5+0.5=2
and
λ2=1.5−0.5=1
So, as we can see, like the regular method, we end up with exactly the same results.