Eigenwert
Eigenwert, or eigenvalue, is a scalar associated with a square matrix or linear operator that describes how a corresponding nonzero vector is scaled under the transformation. If A is an n-by-n matrix and v ≠ 0 is a vector such that Av = λv, then λ is an eigenvalue of A and v is an eigenvector associated with λ. The pair (v, λ) indicates that the transformation preserves the direction of v up to a scale.
To find eigenvalues, solve the characteristic equation det(A − λI) = 0, where I is the identity matrix.
Special cases and properties: If A is real and symmetric, all eigenvalues are real and A can
Applications and computation: Eigenvalues are used in stability analysis, differential equations, and data analysis (e.g., principal
Example: A = [[2,1],[1,2]] has eigenvalues 3 and 1 with eigenvectors (1,1) and (1,−1), respectively.