- Construct two symmetric 2x2 matrices A and B. Hint: a symmetric matrix can be constructed easily from a square matrix as Asym = A + A^T
- Calculate the matrix product C = A * B using
numpy.dot()
. - Calculate the eigenvalues of matrix C with
numpy.linalg.eigvals()
.