What is the basic definition of eigenvalues in linear algebra?
+
Eigenvalues are scalars associated with a square matrix that satisfy the equation Ax = λx, where A is the matrix, x is a non-zero vector (eigenvector), and λ is the eigenvalue. They represent factors by which the eigenvector is scaled during the transformation defined by A.
How do you find eigenvalues of a 2x2 matrix?
+
To find eigenvalues of a 2x2 matrix, subtract λ from the diagonal elements to form (A - λI), then compute the determinant and set it equal to zero: det(A - λI) = 0. Solving this characteristic equation gives the eigenvalues.
What is the characteristic polynomial and how is it used to find eigenvalues?
+
The characteristic polynomial is obtained by calculating the determinant of (A - λI), where A is the matrix and I is the identity matrix of the same size. Setting this polynomial equal to zero yields the characteristic equation, whose roots are the eigenvalues of A.
Can eigenvalues be complex numbers?
+
Yes, eigenvalues can be complex numbers, especially when the matrix has complex entries or when the characteristic polynomial has complex roots. This commonly occurs even for real matrices when their characteristic polynomial has no real roots.
What computational tools or libraries can help find eigenvalues efficiently?
+
Computational tools like MATLAB, NumPy (Python), and Mathematica provide built-in functions to compute eigenvalues efficiently. For example, in Python's NumPy library, you can use numpy.linalg.eig() to find the eigenvalues and eigenvectors of a matrix.