Skip to content

Files

Latest commit

a7625fd · Feb 25, 2025

History

History
13 lines (10 loc) · 464 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 464 Bytes

Linear algebra

  1. 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
  2. Calculate the matrix product C = A * B using numpy.dot().
  3. Calculate the eigenvalues of matrix C with numpy.linalg.eigvals().