Copy your code and results to the answer file.
9 3 3 3 2 4 3 4 2Remember to use with(linalg). The functions eigenvals and eigenvectors are what you are looking for. Be sure you understand the output from the eigenvectors function. To check your understanding, verify that the eigenvector for the eigenvalue 12 satifies the eigenvalue equation: matrix times eigenvector equals eigenvalue times eigenvector. To multiply a matrix a times a vector v use
evalm(a &* v);The &* operator is Maple for multiplying as matrices as opposed to multiplying as numbers.
Copy your Maple session to the answer file.