Eigenspaces
When a linear transformation acts on a vector, it typically changes both its magnitude and direction. However, eigenvectors are special: they only change in magnitude, not direction. Each eigenvector is associated with a specific eigenvalue, which quantifies this scaling. An eigenspace takes this concept further, grouping all such special vectors that share the same scaling factor (eigenvalue) into a single geometric subspace. Understanding eigenspaces helps us visualize the invariant directions of a transformation.
What is an Eigenspace?
An eigenspace is the set of all eigenvectors corresponding to a particular eigenvalue , along with the zero vector. For a given matrix and an eigenvalue , the eigenspace is defined as the set of all vectors such that . This collection forms a vector subspace of . Including the zero vector ensures that the set satisfies the properties of a vector subspace, even though the zero vector itself is not considered an eigenvector by definition.
For a matrix and an eigenvalue , the eigenspace is given by:
The Null Space Connection
The defining equation for an eigenvector, , can be rearranged to reveal its connection to a null space. Subtracting from both sides gives . Since is a vector, we can factor it out by introducing the identity matrix , resulting in . This means that the eigenvectors corresponding to are precisely the non-zero vectors in the null space of the matrix . The eigenspace is thus equivalent to the null space of .
Finding the Basis of an Eigenspace
To find the basis for an eigenspace , we need to solve the homogeneous system . This involves finding the null space of the matrix . Typically, this is done by performing Gaussian elimination on to reduce it to row echelon form. The free variables in the resulting system will correspond to the basis vectors of the null space, which are the basis vectors for the eigenspace. These basis vectors are linearly independent and span the entire eigenspace.
The basis vectors for an eigenspace are not unique; any set of linearly independent vectors that span the same subspace will serve as a valid basis. However, the number of vectors in the basis is unique.
Dimension of an Eigenspace (Geometric Multiplicity)
The dimension of an eigenspace is the number of linearly independent eigenvectors associated with the eigenvalue . This dimension is also known as the geometric multiplicity of the eigenvalue. It is equal to the number of vectors in any basis for . A geometric multiplicity of 1 means the eigenspace is a line, while a geometric multiplicity of 2 means it's a plane, and so on. The geometric multiplicity is always less than or equal to the algebraic multiplicity (the number of times an eigenvalue appears as a root of the characteristic polynomial).
Eigenspaces for Repeated Eigenvalues
When an eigenvalue has an algebraic multiplicity greater than 1, its corresponding eigenspace can have a geometric multiplicity that is either equal to or less than the algebraic multiplicity. If the geometric multiplicity is less than the algebraic multiplicity, the matrix is said to be defective and cannot be diagonalized. This scenario often arises in transformations that involve shearing or rotations that don't fully align with the axes. For example, a matrix might have a single eigenvalue with algebraic multiplicity 2, but its eigenspace might only be a 1-dimensional line (geometric multiplicity 1).
An eigenspace is the set of all eigenvectors for a given eigenvalue , plus the zero vector, forming a vector subspace.
Eigenspaces are equivalent to the null space of the matrix , where is the identity matrix.
To find an eigenspace's basis, solve the homogeneous system using methods like Gaussian elimination or
scipy.linalg.null_space.The geometric multiplicity of an eigenvalue is the dimension of its eigenspace, equal to the number of linearly independent basis vectors.
Geometric multiplicity is always less than or equal to the algebraic multiplicity; if they differ, the matrix is defective.
Understanding eigenspaces provides insight into the invariant directions and scaling behavior of linear transformations.