Difference between revisions of "Eigenvalues and Eigenvectors"

From Department of Mathematics at UTSA
Jump to navigation Jump to search
Line 37: Line 37:
 
* [http://math.mit.edu/~gs/linearalgebra/ila0601.pdf Eigenvalues and Eigenvectors], MIT Math Department
 
* [http://math.mit.edu/~gs/linearalgebra/ila0601.pdf Eigenvalues and Eigenvectors], MIT Math Department
 
* [https://en.wikipedia.org/wiki/Eigenvalues_and_eigenvectors Eigenvalues and Eigenvectors], Wikipedia
 
* [https://en.wikipedia.org/wiki/Eigenvalues_and_eigenvectors Eigenvalues and Eigenvectors], Wikipedia
 +
* [https://www.khanacademy.org/math/linear-algebra/alternate-bases/eigen-everything/v/linear-algebra-example-solving-for-the-eigenvalues-of-a-2x2-matrix Solving for Eigenvalues of 2x2 Matrix], Khan Academy
 +
* [https://www.khanacademy.org/math/linear-algebra/alternate-bases/eigen-everything/v/linear-algebra-eigenvalues-of-a-3x3-matrix Eigenvalues of a 3x3 Matrix], Khan Academy
 +
* [https://www.youtube.com/watch?v=IdsV0RaC9jM Finding Eigenvalues and Eigenvectors: 2x2 Matrix Example], patrickJMT
 +
* [https://metric.ma.ic.ac.uk/metric_public/matrices/eigenvalues_and_eigenvectors/eigenvalues2.html Eigenvalues and Eigenvectors of a 3x3 Matrix],

Revision as of 14:41, 24 September 2021

Definition

In linear algebra, an eigenvector of a matrix is a nonzero vector that changes at most by a scalar factor when that linear transformation is applied to it. The corresponding eigenvalue, often denoted by , is the factor by which the eigenvector is scaled. That is, given some eigenvector Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle v_i } of a square matrix Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \mathbf{A}} , Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \mathbf{A}v_i = \lambda_i v_i} , where Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \lambda_i } is the corresponding eigenvalue of Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle v_i } . For example:

Let Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \mathbf{A} = \begin{bmatrix} 3 & 4 & -2\\ 1 & 4 & -1\\ 2 & 6 & -1 \end{bmatrix}} , Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle v_1 = \begin{bmatrix} 1\\ 1\\ 2 \end{bmatrix}}


Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \mathbf{A}v_1 = \begin{bmatrix} 3 & 4 & -2\\ 1 & 4 & -1\\ 2 & 6 & -1 \end{bmatrix} \begin{bmatrix} 1\\ 1\\ 2 \end{bmatrix} = \begin{bmatrix} 3\\ 3\\ 6 \end{bmatrix} = 3\begin{bmatrix} 1\\ 1\\ 2 \end{bmatrix} = 3v_1}

Thus, Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle v_1 } is an eigenvector of matrix Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \mathbf{A} } , and its corresponding eigenvalue Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \lambda_1 = 3 } .

Resources