ℹ️ Skipped - page is already crawled
| Filter | Status | Condition | Details |
|---|---|---|---|
| HTTP status | PASS | download_http_code = 200 | HTTP 200 |
| Age cutoff | PASS | download_stamp > now() - 6 MONTH | 0.3 months ago |
| History drop | PASS | isNull(history_drop_reason) | No drop reason |
| Spam/ban | PASS | fh_dont_index != 1 AND ml_spam_score = 0 | ml_spam_score=0 |
| Canonical | PASS | meta_canonical IS NULL OR = '' OR = src_unparsed | Not set |
| Property | Value |
|---|---|
| URL | https://calcworkshop.com/eigenvalues/eigenvalues-and-eigenvectors/ |
| Last Crawled | 2026-04-03 13:07:13 (8 days ago) |
| First Indexed | 2018-10-13 07:15:39 (7 years ago) |
| HTTP Status Code | 200 |
| Meta Title | Eigenvalues & Eigenvectors (Boost Your Understanding) |
| Meta Description | Learn Eigenvalues & Eigenvectors effortlessly through our step-by-step guide, tailored for students in need. |
| Meta Canonical | null |
| Boilerpipe Text | Eigenvalues and Eigenvectors
are useful throughout
pure and applied mathematics
and are used to study differential equations and continuous dynamical systems.
Jenn, Founder Calcworkshop
®
, 15+ Years Experience (Licensed & Certified Teacher)
In fact, eigenvalues provide essential information in
engineering design
and
machine learning AI technology
and arise naturally in such fields as
physics
and
chemistry
.
And we can see its uses in the frequencies used in electrical systems, oscillations and frequencies for structures such as bridges and buildings, and the tuning of instruments to make things more pleasant to the ear or dampen noise and vibrations.
So, what is an
eigenvalue
and an
eigenvector
anyway?
Before we get to the formal definition, let’s do some exploring.
Understanding Eigenvalues and Eigenvectors with an Example
Suppose you live at the origin \((0,0)\) in a two-dimensional world, and your friend, Liam, lives at the ordered pair \((4,4)\) and your other friend, Evelyn, lives at the ordered pair \((8,8)\).
Exploring Eigenvectors
To get to Liam’s house, you must travel 4 units to the right along the \(\mathrm{x}\)-axis and 4 units up along the y-axis. This can be represented as the \(2 \mathrm{D}\) vector \(\).
Creating Eigenvectors
Now, if you and Liam then want to visit Evelyn, you must travel another 4 units to the right along the \(x\)-axis and 4 units up along the \(y\)-axis. This \(2 \mathrm{D}\) vector can be represented as \(\) as well.
But observe how these vectors are related.
The second vector from Liam’s house to Evelyn’s house first vector is found by scaling the first vector from your house to Liam’s house by 2. As \(2=\)
Colinear & Scalar Vectors
Notice that all three houses are collinear (on the same line), and their distances are just scalar multiples of each other. Hence, after a transformation (i.e., walking/translating from one house to another), the direction of the vector remains unchanged. Just the length (magnitude) is different.
The scaling is the eigenvalue, and the resulting vector is called the eigenvector.
Formal Definitions of Eigenvalues and Eigenvectors
So, an eigenvector of an \(n \times n\) matrix A is a nonzero vector \(\vec{x}\) such that \(A \vec{x}=\lambda \vec{x}\) for any scalar \(\lambda\) . A scalar \(\lambda\) is called an eigenvalue of \(\mathrm{A}\) if there is a nontrivial solution \(\vec{x}\) of \(A \vec{x}=\lambda \vec{x}\) such that an \(\vec{x}\) is called an eigenvector corresponding to \(\lambda\).
Eigenvalue Eigenvector (Formula Definition)
Key Takeaways and Fun Facts
Here are three big takeaways from this important definition.
First
, eigenvalues and eigenvectors only apply to square matrices.
Second
, eigenvectors cannot be the zero vector, as they are defined as nonzero, but eigenvalues which are scalars can be any real number, including zero.
Third
, an eigenvector of \(\mathrm{A}\) is a vector \(\vec{x}\) such at \(A \vec{x}\) is collinear with \(\vec{x}\) and the origin, as \(A \vec{x}=\lambda \vec{x}\) can be written as \(A \vec{x}-\lambda \vec{x}=\overrightarrow{0}\). And if \(A \vec{x}\) and \(\lambda \vec{x}\) are collinear with the origin, then \(A \vec{x}\) and \(\vec{x}\) must lie on the same line through the origin. Which indicates that \(A \vec{x}\) is a scalar multiple of \(\vec{x}\) by a scale of \(\lambda\).
And here’s a fun fact: In German, the prefix “
eigen
” means “self” or “characteristic.” Thus, an eigenvector is a vector that is a multiple of itself by the matrix transformation \(A \vec{x}\). It is also called a characteristic vector, as it represents a “characteristic” of A.
Practical Examples: Verifying Eigenvectors and Finding Eigenvalues
Okay, so let’s put all this information into action with a few examples.
Let \(A=\left[\begin{array}{cc}3 & -2 \\ 1 & 0\end{array}\right], \vec{u}=\left[\begin{array}{c}2 \\ 1\end{array}\right]\) and \(\vec{v}=\left[\begin{array}{c}-1 \\ 1\end{array}\right]\). Are \(\mathrm{u}\) and \(\mathrm{v}\) eigenvectors of \(\mathrm{A}\) ? Well, knowing that an eigenvector maintains the equation \(A \vec{x}=\lambda \vec{x}\), all we have to do is multiply \(A\) and \(u\) and then \(A\) and \(v\) separately and see if they are multiples of \(u\) and \(v\).
\begin{aligned}
A u & \stackrel{?}{=} \lambda u \\
\underbrace{\left[\begin{array}{cc}
3 & -2 \\
1 & 0
\end{array}\right]}_{A} \underbrace{\left[\begin{array}{l}
2 \\
1
\end{array}\right]}_{u} & =\left[\begin{array}{l}
4 \\
2
\end{array}\right]=\underbrace{2}_{\lambda} \underbrace{\left[\begin{array}{l}
2 \\
1
\end{array}\right]}_{u}
\end{aligned}
Yes, this means that \(u\) is an eigenvector corresponding to an eigenvalue of 2.
Now it’s time to check if \(\mathrm{v}\) is an eigenvector of matrix \(A\).
\begin{aligned}
A v & \stackrel{?}{=} \lambda v \\
\underbrace{\left[\begin{array}{cc}
3 & -2 \\
1 & 0
\end{array}\right]}_{A} \underbrace{\left[\begin{array}{c}
-1 \\
1
\end{array}\right]}_{v} & =\left[\begin{array}{l}
-5 \\
-1
\end{array}\right]
\end{aligned}
Sadly, Av does not yield a multiple of \(\mathrm{v}\), we can conclude that \(\mathrm{v}\) is not an eigenvector of A
Alright, so when we’re given a vector, we can verify whether or not it’s an eigenvector and find its eigenvalue, as the example above nicely shows.
Finding Eigenvectors Given an Eigenvalue
But what if we aren’t given an eigenvalue and are asked to find the eigenvector?
For example, let’s show that 7 is an eigenvalue of \(A=\left[\begin{array}{ll}1 & 6 \\ 5 & 2\end{array}\right]\) and find its corresponding eigenvector.
First, we will transform our formula \(A \vec{x}=\lambda \vec{x}\):
\begin{aligned}
A \vec{x} &= \lambda \vec{x} \\
A \vec{x} – \lambda \vec{x} &= \overrightarrow{0} \\
(A-\lambda I) \vec{x} &= \overrightarrow{0}
\end{aligned}
Now let’s make our substitution for \(\mathrm{A}\) and lambda:
\begin{aligned}
A-\lambda I &= \left[\begin{array}{ll}
1 & 6 \\
5 & 2
\end{array}\right]-7\left[\begin{array}{ll}
1 & 0 \\
0 & 1
\end{array}\right] \\
&= \left[\begin{array}{ll}
1 & 6 \\
5 & 2
\end{array}\right]-\left[\begin{array}{ll}
7 & 0 \\
0 & 7
\end{array}\right] \\
&= \left[\begin{array}{cc}
-6 & 6 \\
5 & -5
\end{array}\right]
\end{aligned}
Next, we solve the equation for \(\vec{x}\) by augmenting with the zero vector and row reducing.
\begin{aligned}
\left[\begin{array}{ccc}
-6 & 6 & 0 \\
5 & -5 & 0
\end{array}\right] & \sim \left[\begin{array}{ccc}
1 & -1 & 0 \\
0 & 0 & 0
\end{array}\right] \\
x_{1} & = x_{2} \\
x_{2} & = x_{2} \\
\vec{x} & = x_{2}\left[\begin{array}{l}
1 \\
1
\end{array}\right]
\end{aligned}
So, every vector of the form \(\vec{x}=x_{2}\left[\begin{array}{l}1 \\ 1\end{array}\right]\) where \(x_{2} \neq 0\) is an eigenvector resultant from the eigenvalue 7.
Introduction to Eigenspaces
In fact, what we have just found is the basis for the corresponding eigenspace.
We’ve just observed that finding the eigenvectors for a given eigenvalue involves solving a
homogeneous system
of equations. And the subspace \(\operatorname{Nul}(A-\lambda I)\) is the eigenspace of \(\mathrm{A}\) corresponding to \(\lambda\).
Cool, right?
Next Steps
In this lesson, you will:
Examine definitions, theorems, and properties
Learn how to find corresponding eigenvalues given an eigenvector
Discover how to find an eigenvector given its corresponding eigenvalue
Find a basis for the corresponding eigenspace
Jump right in and start exploring!
Video Tutorial w/ Full Lesson & Detailed Examples
Get access to all the courses and over 450 HD videos with your subscription
Monthly and Yearly Plans Available
Get My Subscription Now
Still wondering if CalcWorkshop is right for you?
Take a
Tour
and find out how a membership can take the struggle out of learning math. |
| Markdown | [Calcworkshop](https://calcworkshop.com/)
[Login](https://calcworkshop.com/login/)
- [Home](https://calcworkshop.com/)
- [Reviews](https://calcworkshop.com/reviews/)
- [Courses](https://calcworkshop.com/courses/)
- [Algebra I & II](https://calcworkshop.com/algebra/)
- [Intro Algebra](https://calcworkshop.com/intro-algebra/)
- [Solving Equations](https://calcworkshop.com/solving-equations/)
- [Exponents](https://calcworkshop.com/exponents/)
- [Polynomials](https://calcworkshop.com/polynomials/)
- [Factoring](https://calcworkshop.com/factoring/)
- [Rationals](https://calcworkshop.com/rationals/)
- [Graphing Linear Equations](https://calcworkshop.com/graphing-linear-equations/)
- [Systems of Equations](https://calcworkshop.com/systems-equations/)
- [Radicals](https://calcworkshop.com/radicals/)
- [Functions & Statistics](https://calcworkshop.com/functions-statistics/)
- [Geometry](https://calcworkshop.com/high-school-geometry/)
- [Basic Geometry](https://calcworkshop.com/basic-geometry/)
- [Reasoning & Proofs](https://calcworkshop.com/reasoning-proof/)
- [Congruent Triangles](https://calcworkshop.com/congruent-triangles/)
- [Quadrilaterals](https://calcworkshop.com/quadrilaterals/)
- [Similarity](https://calcworkshop.com/similarity/)
- [Triangles & Trig](https://calcworkshop.com/triangle-trig/)
- [Circles](https://calcworkshop.com/circle/)
- [Polygons & Circles](https://calcworkshop.com/polygons-circles/)
- [Volume & Surface Area](https://calcworkshop.com/volume-surface-area/)
- [Transformations](https://calcworkshop.com/transformations/)
- [Pre-Calculus](https://calcworkshop.com/precalculus/)
- [Trigonometry](https://calcworkshop.com/trigonometry/)
- [Trigonometric Functions](https://calcworkshop.com/trigonometric-functions/)
- [Radian Measure](https://calcworkshop.com/radian-measure/)
- [Graphing Trig Functions](https://calcworkshop.com/graphing-trig-functions/)
- [Trig Identities](https://calcworkshop.com/trig-identities/)
- [Trig Equations](https://calcworkshop.com/trig-equations/)
- [Law of Sines and Cosines](https://calcworkshop.com/law-sines-cosines/)
- [Vector Applications](https://calcworkshop.com/vector-applications/)
- [Polar Equations](https://calcworkshop.com/polar-equations/)
- [Complex Numbers](https://calcworkshop.com/complex-numbers/)
- [Math Analysis](https://calcworkshop.com/math-analysis/)
- [Intro to Math Analysis](https://calcworkshop.com/intro-math-analysis/)
- [Functions and Graphs](https://calcworkshop.com/functions-graphs/)
- [Expos and Logs](https://calcworkshop.com/expos-logs/)
- [Polynomial Functions](https://calcworkshop.com/polynomial-function/)
- [Rational Functions](https://calcworkshop.com/rational-functions/)
- [Conic Sections](https://calcworkshop.com/conic-sections/)
- [Series & Sequences](https://calcworkshop.com/series-sequences/)
- [Calculus 1, 2, & 3]()
- [Business Calculus](https://calcworkshop.com/business-calculus/)
- [Calculus 1](https://calcworkshop.com/calculus-1/)
- [PreCalc Review](https://calcworkshop.com/pre-calculus-review/)
- [Limits](https://calcworkshop.com/limits/)
- [Derivatives](https://calcworkshop.com/derivatives/)
- [Application of Derivatives](https://calcworkshop.com/application-derivatives/)
- [Integrals](https://calcworkshop.com/integrals/)
- [Final Exam](https://calcworkshop.com/calculus-1-final-exam/)
- [Calculus 2](https://calcworkshop.com/calculus-2/)
- [Integrals](https://calcworkshop.com/integrals/)
- [Applications of Integrals](https://calcworkshop.com/applications-integrals/)
- [Diff-EQs](https://calcworkshop.com/diff-eqs/)
- [Polar Functions](https://calcworkshop.com/polar-functions/)
- [Parametric and Vector Functions](https://calcworkshop.com/parametric-vector-functions/)
- [Sequences and Series](https://calcworkshop.com/sequences-series/)
- [Final Exam](https://calcworkshop.com/calculus-2-final-exam/)
- [Calculus 3](https://calcworkshop.com/calculus-3/)
- [Vectors and The Geometry of Space](https://calcworkshop.com/vectors-and-the-geometry-of-space/)
- [Vector Functions](https://calcworkshop.com/vector-functions/)
- [Partial Derivatives](https://calcworkshop.com/partial-derivatives/)
- [Multiple Integrals](https://calcworkshop.com/multiple-integrals/)
- [Vector Calculus](https://calcworkshop.com/vector-calculus/)
- [Final Exam](https://calcworkshop.com/calculus-3-final-exam/)
- [Statistics & Prob](https://calcworkshop.com/probability-and-statistics/)
- [Exploring Data](https://calcworkshop.com/exploring-data/)
- [Probability](https://calcworkshop.com/probability/)
- [Discrete Distribution](https://calcworkshop.com/discrete-probability-distribution/)
- [Continuous Distribution](https://calcworkshop.com/continuous-probability-distribution/)
- [Joint Distribution](https://calcworkshop.com/joint-probability-distribution/)
- [Confidence Interval](https://calcworkshop.com/confidence-interval/)
- [Hypothesis Testing](https://calcworkshop.com/hypothesis-test/)
- [Linear Regression](https://calcworkshop.com/linear-regression/)
- [Discrete Math](https://calcworkshop.com/discrete-math/)
- [Logic](https://calcworkshop.com/logic/)
- [Proofs](https://calcworkshop.com/proofs/)
- [Sets](https://calcworkshop.com/set-theory/)
- [Number Theory](https://calcworkshop.com/number-theory/)
- [Functions](https://calcworkshop.com/functions/)
- [Combinatorics](https://calcworkshop.com/combinatorics/)
- [Relations](https://calcworkshop.com/relations/)
- [Trees & Graphs](https://calcworkshop.com/trees-graphs/)
- [Linear Algebra](https://calcworkshop.com/linear-algebra/)
- [Linear Equations](https://calcworkshop.com/linear-equations/)
- [Matrix Algebra](https://calcworkshop.com/matrix-algebra/)
- [Determinants](https://calcworkshop.com/determinates/)
- [Vector Spaces](https://calcworkshop.com/vector-spaces/)
- [Eigenvalues and Eigenvectors](https://calcworkshop.com/eigenvalues/)
- [Orthogonality and Least Squares](https://calcworkshop.com/orthogonality/)
- [Symmetric Matrices](https://calcworkshop.com/symmetric-matrices/)
- [Final Exam](https://calcworkshop.com/linear-algebra-final-exam/)
- [Diff-EQs](https://calcworkshop.com/differential-equations/)
- [Intro to DiffEqs](https://calcworkshop.com/intro-to-diffeqs/)
- [First Order Differential Equations](https://calcworkshop.com/first-order-differential-equations/)
- [Second Order Differential Equations](https://calcworkshop.com/second-order-differential-equations/)
- [Series Solutions](https://calcworkshop.com/series-solutions-diff-eqs/)
- [Laplace Transform](https://calcworkshop.com/laplace-transform/)
- [Systems of Differential Equations](https://calcworkshop.com/systems-of-differential-equations/)
- [Final Exam](https://calcworkshop.com/differential-equations-final-exam/)
- [Praxis](https://calcworkshop.com/praxis-math/)
- [FAQs](https://calcworkshop.com/faq/)
- [About](https://calcworkshop.com/about-me/)
- [Contact](https://calcworkshop.com/contact/)
- [Login](https://calcworkshop.com/login/)
[Home](https://calcworkshop.com/) » [Eigenvalues and Eigenvectors](https://calcworkshop.com/eigenvalues/) » **Eigenvalues and Eigenvectors**
# **Eigenvalues & Eigenvectors** Boost Your Understanding
// Last Updated: May 29, 2023 - [Watch Video](https://calcworkshop.com/eigenvalues/eigenvalues-and-eigenvectors/#chapter) //
**Eigenvalues and Eigenvectors** are useful throughout *pure and applied mathematics* and are used to study differential equations and continuous dynamical systems.

Jenn, Founder Calcworkshop®, 15+ Years Experience (Licensed & Certified Teacher)
In fact, eigenvalues provide essential information in **engineering design** and **machine learning AI technology** and arise naturally in such fields as *physics* and *chemistry*.
And we can see its uses in the frequencies used in electrical systems, oscillations and frequencies for structures such as bridges and buildings, and the tuning of instruments to make things more pleasant to the ear or dampen noise and vibrations.
So, what is an **eigenvalue** and an **eigenvector** anyway?
Before we get to the formal definition, let’s do some exploring.
## Understanding Eigenvalues and Eigenvectors with an Example
Suppose you live at the origin \\((0,0)\\) in a two-dimensional world, and your friend, Liam, lives at the ordered pair \\((4,4)\\) and your other friend, Evelyn, lives at the ordered pair \\((8,8)\\).

Exploring Eigenvectors
To get to Liam’s house, you must travel 4 units to the right along the \\(\\mathrm{x}\\)-axis and 4 units up along the y-axis. This can be represented as the \\(2 \\mathrm{D}\\) vector \\(\\).

Creating Eigenvectors
Now, if you and Liam then want to visit Evelyn, you must travel another 4 units to the right along the \\(x\\)-axis and 4 units up along the \\(y\\)-axis. This \\(2 \\mathrm{D}\\) vector can be represented as \\(\\) as well.
But observe how these vectors are related.
The second vector from Liam’s house to Evelyn’s house first vector is found by scaling the first vector from your house to Liam’s house by 2. As \\(2=\\)

Colinear & Scalar Vectors
Notice that all three houses are collinear (on the same line), and their distances are just scalar multiples of each other. Hence, after a transformation (i.e., walking/translating from one house to another), the direction of the vector remains unchanged. Just the length (magnitude) is different.
The scaling is the eigenvalue, and the resulting vector is called the eigenvector.
## Formal Definitions of Eigenvalues and Eigenvectors
So, an eigenvector of an \\(n \\times n\\) matrix A is a nonzero vector \\(\\vec{x}\\) such that \\(A \\vec{x}=\\lambda \\vec{x}\\) for any scalar \\(\\lambda\\) . A scalar \\(\\lambda\\) is called an eigenvalue of \\(\\mathrm{A}\\) if there is a nontrivial solution \\(\\vec{x}\\) of \\(A \\vec{x}=\\lambda \\vec{x}\\) such that an \\(\\vec{x}\\) is called an eigenvector corresponding to \\(\\lambda\\).

Eigenvalue Eigenvector (Formula Definition)
## Key Takeaways and Fun Facts
Here are three big takeaways from this important definition.
**First**, eigenvalues and eigenvectors only apply to square matrices.
**Second**, eigenvectors cannot be the zero vector, as they are defined as nonzero, but eigenvalues which are scalars can be any real number, including zero.
**Third**, an eigenvector of \\(\\mathrm{A}\\) is a vector \\(\\vec{x}\\) such at \\(A \\vec{x}\\) is collinear with \\(\\vec{x}\\) and the origin, as \\(A \\vec{x}=\\lambda \\vec{x}\\) can be written as \\(A \\vec{x}-\\lambda \\vec{x}=\\overrightarrow{0}\\). And if \\(A \\vec{x}\\) and \\(\\lambda \\vec{x}\\) are collinear with the origin, then \\(A \\vec{x}\\) and \\(\\vec{x}\\) must lie on the same line through the origin. Which indicates that \\(A \\vec{x}\\) is a scalar multiple of \\(\\vec{x}\\) by a scale of \\(\\lambda\\).
And here’s a fun fact: In German, the prefix “*eigen*” means “self” or “characteristic.” Thus, an eigenvector is a vector that is a multiple of itself by the matrix transformation \\(A \\vec{x}\\). It is also called a characteristic vector, as it represents a “characteristic” of A.
## Practical Examples: Verifying Eigenvectors and Finding Eigenvalues
Okay, so let’s put all this information into action with a few examples.
Let \\(A=\\left\[\\begin{array}{cc}3 & -2 \\\\ 1 & 0\\end{array}\\right\], \\vec{u}=\\left\[\\begin{array}{c}2 \\\\ 1\\end{array}\\right\]\\) and \\(\\vec{v}=\\left\[\\begin{array}{c}-1 \\\\ 1\\end{array}\\right\]\\). Are \\(\\mathrm{u}\\) and \\(\\mathrm{v}\\) eigenvectors of \\(\\mathrm{A}\\) ? Well, knowing that an eigenvector maintains the equation \\(A \\vec{x}=\\lambda \\vec{x}\\), all we have to do is multiply \\(A\\) and \\(u\\) and then \\(A\\) and \\(v\\) separately and see if they are multiples of \\(u\\) and \\(v\\).
\\begin{aligned}
A u & \\stackrel{?}{=} \\lambda u \\\\
\\underbrace{\\left\[\\begin{array}{cc}
3 & -2 \\\\
1 & 0
\\end{array}\\right\]}\_{A} \\underbrace{\\left\[\\begin{array}{l}
2 \\\\
1
\\end{array}\\right\]}\_{u} & =\\left\[\\begin{array}{l}
4 \\\\
2
\\end{array}\\right\]=\\underbrace{2}\_{\\lambda} \\underbrace{\\left\[\\begin{array}{l}
2 \\\\
1
\\end{array}\\right\]}\_{u}
\\end{aligned}
Yes, this means that \\(u\\) is an eigenvector corresponding to an eigenvalue of 2.
Now it’s time to check if \\(\\mathrm{v}\\) is an eigenvector of matrix \\(A\\).
\\begin{aligned}
A v & \\stackrel{?}{=} \\lambda v \\\\
\\underbrace{\\left\[\\begin{array}{cc}
3 & -2 \\\\
1 & 0
\\end{array}\\right\]}\_{A} \\underbrace{\\left\[\\begin{array}{c}
-1 \\\\
1
\\end{array}\\right\]}\_{v} & =\\left\[\\begin{array}{l}
-5 \\\\
-1
\\end{array}\\right\]
\\end{aligned}
Sadly, Av does not yield a multiple of \\(\\mathrm{v}\\), we can conclude that \\(\\mathrm{v}\\) is not an eigenvector of A
Alright, so when we’re given a vector, we can verify whether or not it’s an eigenvector and find its eigenvalue, as the example above nicely shows.
## Finding Eigenvectors Given an Eigenvalue
But what if we aren’t given an eigenvalue and are asked to find the eigenvector?
For example, let’s show that 7 is an eigenvalue of \\(A=\\left\[\\begin{array}{ll}1 & 6 \\\\ 5 & 2\\end{array}\\right\]\\) and find its corresponding eigenvector.
First, we will transform our formula \\(A \\vec{x}=\\lambda \\vec{x}\\):
\\begin{aligned}
A \\vec{x} &= \\lambda \\vec{x} \\\\
A \\vec{x} – \\lambda \\vec{x} &= \\overrightarrow{0} \\\\
(A-\\lambda I) \\vec{x} &= \\overrightarrow{0}
\\end{aligned}
Now let’s make our substitution for \\(\\mathrm{A}\\) and lambda:
\\begin{aligned}
A-\\lambda I &= \\left\[\\begin{array}{ll}
1 & 6 \\\\
5 & 2
\\end{array}\\right\]-7\\left\[\\begin{array}{ll}
1 & 0 \\\\
0 & 1
\\end{array}\\right\] \\\\
&= \\left\[\\begin{array}{ll}
1 & 6 \\\\
5 & 2
\\end{array}\\right\]-\\left\[\\begin{array}{ll}
7 & 0 \\\\
0 & 7
\\end{array}\\right\] \\\\
&= \\left\[\\begin{array}{cc}
-6 & 6 \\\\
5 & -5
\\end{array}\\right\]
\\end{aligned}
Next, we solve the equation for \\(\\vec{x}\\) by augmenting with the zero vector and row reducing.
\\begin{aligned}
\\left\[\\begin{array}{ccc}
-6 & 6 & 0 \\\\
5 & -5 & 0
\\end{array}\\right\] & \\sim \\left\[\\begin{array}{ccc}
1 & -1 & 0 \\\\
0 & 0 & 0
\\end{array}\\right\] \\\\
x\_{1} & = x\_{2} \\\\
x\_{2} & = x\_{2} \\\\
\\vec{x} & = x\_{2}\\left\[\\begin{array}{l}
1 \\\\
1
\\end{array}\\right\]
\\end{aligned}
So, every vector of the form \\(\\vec{x}=x\_{2}\\left\[\\begin{array}{l}1 \\\\ 1\\end{array}\\right\]\\) where \\(x\_{2} \\neq 0\\) is an eigenvector resultant from the eigenvalue 7.
## Introduction to Eigenspaces
In fact, what we have just found is the basis for the corresponding eigenspace.
We’ve just observed that finding the eigenvectors for a given eigenvalue involves solving a [homogeneous system](https://calcworkshop.com/linear-equations/solution-sets-of-linear-systems/) of equations. And the subspace \\(\\operatorname{Nul}(A-\\lambda I)\\) is the eigenspace of \\(\\mathrm{A}\\) corresponding to \\(\\lambda\\).
Cool, right?
## Next Steps
In this lesson, you will:
- Examine definitions, theorems, and properties
- Learn how to find corresponding eigenvalues given an eigenvector
- Discover how to find an eigenvector given its corresponding eigenvalue
- Find a basis for the corresponding eigenspace
Jump right in and start exploring\!
## Video Tutorial w/ Full Lesson & Detailed Examples

Get access to all the courses and over 450 HD videos with your subscription
*Monthly and Yearly Plans Available*
[Get My Subscription Now](https://calcworkshop.com/pricing/)
Still wondering if CalcWorkshop is right for you?
Take a [Tour](https://calcworkshop.com/tour/) and find out how a membership can take the struggle out of learning math.
[Calcworkshop](https://calcworkshop.com/)
© 2026 Calcworkshop LLC / [Privacy Policy](https://calcworkshop.com/privacy/) / [Terms of Service](https://calcworkshop.com/terms/)
- [About](https://calcworkshop.com/about-me/)
- [Reviews](https://calcworkshop.com/reviews/)
- [Courses](https://calcworkshop.com/courses/)
- [Plans & Pricing](https://calcworkshop.com/pricing/) |
| Readable Markdown | **Eigenvalues and Eigenvectors** are useful throughout *pure and applied mathematics* and are used to study differential equations and continuous dynamical systems.

Jenn, Founder Calcworkshop®, 15+ Years Experience (Licensed & Certified Teacher)
In fact, eigenvalues provide essential information in **engineering design** and **machine learning AI technology** and arise naturally in such fields as *physics* and *chemistry*.
And we can see its uses in the frequencies used in electrical systems, oscillations and frequencies for structures such as bridges and buildings, and the tuning of instruments to make things more pleasant to the ear or dampen noise and vibrations.
So, what is an **eigenvalue** and an **eigenvector** anyway?
Before we get to the formal definition, let’s do some exploring.
## Understanding Eigenvalues and Eigenvectors with an Example
Suppose you live at the origin \\((0,0)\\) in a two-dimensional world, and your friend, Liam, lives at the ordered pair \\((4,4)\\) and your other friend, Evelyn, lives at the ordered pair \\((8,8)\\).

Exploring Eigenvectors
To get to Liam’s house, you must travel 4 units to the right along the \\(\\mathrm{x}\\)-axis and 4 units up along the y-axis. This can be represented as the \\(2 \\mathrm{D}\\) vector \\(\\).

Creating Eigenvectors
Now, if you and Liam then want to visit Evelyn, you must travel another 4 units to the right along the \\(x\\)-axis and 4 units up along the \\(y\\)-axis. This \\(2 \\mathrm{D}\\) vector can be represented as \\(\\) as well.
But observe how these vectors are related.
The second vector from Liam’s house to Evelyn’s house first vector is found by scaling the first vector from your house to Liam’s house by 2. As \\(2=\\)

Colinear & Scalar Vectors
Notice that all three houses are collinear (on the same line), and their distances are just scalar multiples of each other. Hence, after a transformation (i.e., walking/translating from one house to another), the direction of the vector remains unchanged. Just the length (magnitude) is different.
The scaling is the eigenvalue, and the resulting vector is called the eigenvector.
## Formal Definitions of Eigenvalues and Eigenvectors
So, an eigenvector of an \\(n \\times n\\) matrix A is a nonzero vector \\(\\vec{x}\\) such that \\(A \\vec{x}=\\lambda \\vec{x}\\) for any scalar \\(\\lambda\\) . A scalar \\(\\lambda\\) is called an eigenvalue of \\(\\mathrm{A}\\) if there is a nontrivial solution \\(\\vec{x}\\) of \\(A \\vec{x}=\\lambda \\vec{x}\\) such that an \\(\\vec{x}\\) is called an eigenvector corresponding to \\(\\lambda\\).

Eigenvalue Eigenvector (Formula Definition)
## Key Takeaways and Fun Facts
Here are three big takeaways from this important definition.
**First**, eigenvalues and eigenvectors only apply to square matrices.
**Second**, eigenvectors cannot be the zero vector, as they are defined as nonzero, but eigenvalues which are scalars can be any real number, including zero.
**Third**, an eigenvector of \\(\\mathrm{A}\\) is a vector \\(\\vec{x}\\) such at \\(A \\vec{x}\\) is collinear with \\(\\vec{x}\\) and the origin, as \\(A \\vec{x}=\\lambda \\vec{x}\\) can be written as \\(A \\vec{x}-\\lambda \\vec{x}=\\overrightarrow{0}\\). And if \\(A \\vec{x}\\) and \\(\\lambda \\vec{x}\\) are collinear with the origin, then \\(A \\vec{x}\\) and \\(\\vec{x}\\) must lie on the same line through the origin. Which indicates that \\(A \\vec{x}\\) is a scalar multiple of \\(\\vec{x}\\) by a scale of \\(\\lambda\\).
And here’s a fun fact: In German, the prefix “*eigen*” means “self” or “characteristic.” Thus, an eigenvector is a vector that is a multiple of itself by the matrix transformation \\(A \\vec{x}\\). It is also called a characteristic vector, as it represents a “characteristic” of A.
## Practical Examples: Verifying Eigenvectors and Finding Eigenvalues
Okay, so let’s put all this information into action with a few examples.
Let \\(A=\\left\[\\begin{array}{cc}3 & -2 \\\\ 1 & 0\\end{array}\\right\], \\vec{u}=\\left\[\\begin{array}{c}2 \\\\ 1\\end{array}\\right\]\\) and \\(\\vec{v}=\\left\[\\begin{array}{c}-1 \\\\ 1\\end{array}\\right\]\\). Are \\(\\mathrm{u}\\) and \\(\\mathrm{v}\\) eigenvectors of \\(\\mathrm{A}\\) ? Well, knowing that an eigenvector maintains the equation \\(A \\vec{x}=\\lambda \\vec{x}\\), all we have to do is multiply \\(A\\) and \\(u\\) and then \\(A\\) and \\(v\\) separately and see if they are multiples of \\(u\\) and \\(v\\).
\\begin{aligned}
A u & \\stackrel{?}{=} \\lambda u \\\\
\\underbrace{\\left\[\\begin{array}{cc}
3 & -2 \\\\
1 & 0
\\end{array}\\right\]}\_{A} \\underbrace{\\left\[\\begin{array}{l}
2 \\\\
1
\\end{array}\\right\]}\_{u} & =\\left\[\\begin{array}{l}
4 \\\\
2
\\end{array}\\right\]=\\underbrace{2}\_{\\lambda} \\underbrace{\\left\[\\begin{array}{l}
2 \\\\
1
\\end{array}\\right\]}\_{u}
\\end{aligned}
Yes, this means that \\(u\\) is an eigenvector corresponding to an eigenvalue of 2.
Now it’s time to check if \\(\\mathrm{v}\\) is an eigenvector of matrix \\(A\\).
\\begin{aligned}
A v & \\stackrel{?}{=} \\lambda v \\\\
\\underbrace{\\left\[\\begin{array}{cc}
3 & -2 \\\\
1 & 0
\\end{array}\\right\]}\_{A} \\underbrace{\\left\[\\begin{array}{c}
-1 \\\\
1
\\end{array}\\right\]}\_{v} & =\\left\[\\begin{array}{l}
-5 \\\\
-1
\\end{array}\\right\]
\\end{aligned}
Sadly, Av does not yield a multiple of \\(\\mathrm{v}\\), we can conclude that \\(\\mathrm{v}\\) is not an eigenvector of A
Alright, so when we’re given a vector, we can verify whether or not it’s an eigenvector and find its eigenvalue, as the example above nicely shows.
## Finding Eigenvectors Given an Eigenvalue
But what if we aren’t given an eigenvalue and are asked to find the eigenvector?
For example, let’s show that 7 is an eigenvalue of \\(A=\\left\[\\begin{array}{ll}1 & 6 \\\\ 5 & 2\\end{array}\\right\]\\) and find its corresponding eigenvector.
First, we will transform our formula \\(A \\vec{x}=\\lambda \\vec{x}\\):
\\begin{aligned}
A \\vec{x} &= \\lambda \\vec{x} \\\\
A \\vec{x} – \\lambda \\vec{x} &= \\overrightarrow{0} \\\\
(A-\\lambda I) \\vec{x} &= \\overrightarrow{0}
\\end{aligned}
Now let’s make our substitution for \\(\\mathrm{A}\\) and lambda:
\\begin{aligned}
A-\\lambda I &= \\left\[\\begin{array}{ll}
1 & 6 \\\\
5 & 2
\\end{array}\\right\]-7\\left\[\\begin{array}{ll}
1 & 0 \\\\
0 & 1
\\end{array}\\right\] \\\\
&= \\left\[\\begin{array}{ll}
1 & 6 \\\\
5 & 2
\\end{array}\\right\]-\\left\[\\begin{array}{ll}
7 & 0 \\\\
0 & 7
\\end{array}\\right\] \\\\
&= \\left\[\\begin{array}{cc}
-6 & 6 \\\\
5 & -5
\\end{array}\\right\]
\\end{aligned}
Next, we solve the equation for \\(\\vec{x}\\) by augmenting with the zero vector and row reducing.
\\begin{aligned}
\\left\[\\begin{array}{ccc}
-6 & 6 & 0 \\\\
5 & -5 & 0
\\end{array}\\right\] & \\sim \\left\[\\begin{array}{ccc}
1 & -1 & 0 \\\\
0 & 0 & 0
\\end{array}\\right\] \\\\
x\_{1} & = x\_{2} \\\\
x\_{2} & = x\_{2} \\\\
\\vec{x} & = x\_{2}\\left\[\\begin{array}{l}
1 \\\\
1
\\end{array}\\right\]
\\end{aligned}
So, every vector of the form \\(\\vec{x}=x\_{2}\\left\[\\begin{array}{l}1 \\\\ 1\\end{array}\\right\]\\) where \\(x\_{2} \\neq 0\\) is an eigenvector resultant from the eigenvalue 7.
## Introduction to Eigenspaces
In fact, what we have just found is the basis for the corresponding eigenspace.
We’ve just observed that finding the eigenvectors for a given eigenvalue involves solving a [homogeneous system](https://calcworkshop.com/linear-equations/solution-sets-of-linear-systems/) of equations. And the subspace \\(\\operatorname{Nul}(A-\\lambda I)\\) is the eigenspace of \\(\\mathrm{A}\\) corresponding to \\(\\lambda\\).
Cool, right?
## Next Steps
In this lesson, you will:
- Examine definitions, theorems, and properties
- Learn how to find corresponding eigenvalues given an eigenvector
- Discover how to find an eigenvector given its corresponding eigenvalue
- Find a basis for the corresponding eigenspace
Jump right in and start exploring\!
## Video Tutorial w/ Full Lesson & Detailed Examples

Get access to all the courses and over 450 HD videos with your subscription
*Monthly and Yearly Plans Available*
[Get My Subscription Now](https://calcworkshop.com/pricing/)
Still wondering if CalcWorkshop is right for you?
Take a [Tour](https://calcworkshop.com/tour/) and find out how a membership can take the struggle out of learning math. |
| Shard | 180 (laksa) |
| Root Hash | 2704321482360107780 |
| Unparsed URL | com,calcworkshop!/eigenvalues/eigenvalues-and-eigenvectors/ s443 |