Suppose you want to know the eigenvalues of the following matrix:
\[ A = \begin{pmatrix} -2 & -24 \\ 3 & 16 \end{pmatrix} \]
Matrix & Vector > Create > Matrix
.a
: Press a
and press
Matrix & Vector > Advanced > Eigenvalues
.a
inside the brackets of eigVl()
and press
The results should be \( \lambda_1 = 4 \) and \( \lambda_2 = 10 \), which are the eigenvalues.
Consider the following matrix:
\[ A = \begin{pmatrix} -2 & -24 \\ 3 & 16 \end{pmatrix} \]
Suppose you want to compute the eigenvectors associated with \( \lambda_1 = 4 \) and \( \lambda_2 = 10 \).
Algebra > Solve System of Equations > Solve System of Linear Equations
.The eigenvectors are represented as: \[ t \begin{pmatrix} -4 \\ 1 \end{pmatrix} \] Here, \( t \) is a free variable. A possible eigenvector is: \[ x_1 = \begin{pmatrix} -4 \\ 1 \end{pmatrix} \]