Skip to main content
返回指南
6 min read5 步骤

How to Calculate Eigenvalues of a 2x2 Matrix: Step-by-Step Guide

Learn to manually calculate eigenvalues for 2x2 matrices using the characteristic equation. Includes formula, worked example, common pitfalls, and when to use a calculator.

跳过数学——使用计算器

分步说明

1

Formulate the `(A - λI)` Matrix

Begin by taking your 2x2 matrix `A = [[a, b], [c, d]]` and subtracting `λ` from each element on its main diagonal. This results in the matrix `[[a-λ, b], [c, d-λ]]`. Remember that `λ` represents the eigenvalue we are trying to find, and `I` is the identity matrix.

2

Calculate the Determinant of `(A - λI)`

Compute the determinant of the matrix obtained in Step 1. For a 2x2 matrix `[[x, y], [z, w]]`, the determinant is `xw - yz`. Applying this to `[[a-λ, b], [c, d-λ]]`, the determinant will be `(a-λ)(d-λ) - (b)(c)`. Carefully expand this expression, combining like terms to simplify it.

3

Derive the Characteristic Equation

Set the determinant calculated in Step 2 equal to zero. This equation, `(a-λ)(d-λ) - bc = 0`, is known as the characteristic equation. For a 2x2 matrix, it will always simplify into a quadratic equation of the form `λ² - Tr(A)λ + det(A) = 0`, where `Tr(A)` is the trace (sum of diagonal elements) and `det(A)` is the determinant of the original matrix `A`.

4

Solve the Quadratic Equation for `λ`

Use the quadratic formula to find the roots of the characteristic equation. For `ax² + bx + c = 0`, the solutions are `x = [-b ± sqrt(b² - 4ac)] / 2a`. Substitute the coefficients from your characteristic equation into this formula to solve for `λ`. The quadratic formula will yield two values for `λ`, which may be real, complex, or repeated.

5

Identify the Eigenvalues

The two solutions obtained from the quadratic formula are the eigenvalues of your 2x2 matrix. Label them as `λ1` and `λ2`. These values represent the scalar factors by which corresponding eigenvectors are scaled under the matrix transformation.

Eigenvalues are fundamental scalars in linear algebra that characterize the behavior of linear transformations. For a given linear transformation represented by a matrix, an eigenvector is a non-zero vector that changes at most by a scalar factor when that linear transformation is applied to it. The eigenvalue is the scalar factor by which the eigenvector is scaled. Understanding how to calculate eigenvalues is crucial in various fields, including physics (e.g., normal modes of vibration), engineering (e.g., stability analysis), computer graphics, and economics.

This guide will walk you through the manual calculation of eigenvalues for a 2x2 matrix, detailing the underlying formula and providing a clear, worked example. While calculators and software can compute these values instantly, grasping the manual process provides a deeper understanding of the mathematical principles involved.

Prerequisites

Before diving into eigenvalue calculation, ensure you are familiar with the following basic matrix operations:

  • Matrix Subtraction: Subtracting one matrix from another of the same dimensions.
  • Scalar Multiplication: Multiplying a matrix by a scalar value.
  • Identity Matrix: Understanding the 2x2 identity matrix, denoted as I = [[1, 0], [0, 1]].
  • Determinant of a 2x2 Matrix: Calculating det([[a, b], [c, d]]) = ad - bc.

The Characteristic Equation

The core of finding eigenvalues lies in solving the characteristic equation. For a square matrix A, an eigenvalue λ (lambda) and its corresponding eigenvector v satisfy the equation:

Av = λv

To find λ, we rearrange this equation:

Av - λv = 0

Since λ is a scalar, we cannot directly subtract it from the matrix A. Instead, we multiply λ by the identity matrix I (of the same dimension as A) to make it a matrix operation:

Av - λIv = 0

Now, we can factor out the eigenvector v:

(A - λI)v = 0

For v to be a non-zero eigenvector (which is a requirement for eigenvectors), the matrix (A - λI) must be singular, meaning it does not have an inverse. A singular matrix has a determinant of zero. Therefore, the characteristic equation is:

det(A - λI) = 0

For a 2x2 matrix A = [[a, b], [c, d]], the matrix (A - λI) is:

A - λI = [[a, b], [c, d]] - λ[[1, 0], [0, 1]] = [[a, b], [c, d]] - [[λ, 0], [0, λ]] = [[a-λ, b], [c, d-λ]]

The determinant of this matrix is:

det(A - λI) = (a-λ)(d-λ) - (b)(c) = 0

Expanding this expression yields a quadratic equation in terms of λ:

ad - aλ - dλ + λ² - bc = 0

λ² - (a+d)λ + (ad-bc) = 0

Notice that (a+d) is the trace of matrix A (sum of diagonal elements), and (ad-bc) is the determinant of matrix A. So, the characteristic equation can also be written as:

λ² - Tr(A)λ + det(A) = 0

Solving this quadratic equation for λ will give you the eigenvalues of the 2x2 matrix A.

Worked Example

Let's find the eigenvalues for the matrix A = [[1, 2], [3, 4]].

Step 1: Formulate the (A - λI) Matrix

Subtract λ from each element on the main diagonal of matrix A:

A - λI = [[1-λ, 2], [3, 4-λ]]

Step 2: Calculate the Determinant of (A - λI)

Using the formula ad - bc for the determinant of a 2x2 matrix:

det(A - λI) = (1-λ)(4-λ) - (2)(3)

det(A - λI) = (4 - λ - 4λ + λ²) - 6

det(A - λI) = λ² - 5λ + 4 - 6

det(A - λI) = λ² - 5λ - 2

Step 3: Derive the Characteristic Equation

Set the determinant equal to zero to form the characteristic equation:

λ² - 5λ - 2 = 0

Step 4: Solve the Quadratic Equation for λ

This is a quadratic equation in the form ax² + bx + c = 0, where a=1, b=-5, and c=-2. We use the quadratic formula:

λ = [-b ± sqrt(b² - 4ac)] / 2a

Substitute the values:

λ = [-(-5) ± sqrt((-5)² - 4 * 1 * (-2))] / (2 * 1)

λ = [5 ± sqrt(25 + 8)] / 2

λ = [5 ± sqrt(33)] / 2

Step 5: Identify the Eigenvalues

The two solutions for λ are the eigenvalues:

λ1 = (5 + sqrt(33)) / 2

λ2 = (5 - sqrt(33)) / 2

These are the eigenvalues for the matrix A = [[1, 2], [3, 4]].

Common Pitfalls to Avoid

  • Sign Errors: Be meticulous with negative signs, especially when expanding (a-λ)(d-λ) and applying the quadratic formula.
  • Incorrect Determinant Calculation: Ensure you are correctly applying ad - bc to the (A - λI) matrix, not the original A.
  • Algebraic Mistakes: Errors in expanding binomials or combining like terms in the characteristic equation are common.
  • Forgetting λI: A common mistake is to simply subtract λ from a and d without recognizing λ as part of λI which only affects the diagonal elements.
  • Assuming Real/Integer Eigenvalues: Eigenvalues can be real, complex, or even repeated. Do not assume they will always be simple integers.

When to Use a Calculator or Solver

While manual calculation is excellent for understanding, a calculator or online solver becomes invaluable in several scenarios:

  • Larger Matrices: For 3x3 matrices, the characteristic equation becomes a cubic polynomial, which is significantly more complex to solve manually. For matrices larger than 3x3, polynomial roots must be found through numerical methods.
  • Complex or Fractional Entries: Matrices with non-integer, fractional, or complex entries can lead to very cumbersome and error-prone manual arithmetic.
  • Speed and Accuracy: In time-sensitive situations or when high precision is required, a calculator ensures faster and more accurate results.
  • Verification: After performing a manual calculation, a solver can quickly verify your results, helping to identify any potential errors.

Mastering the manual calculation of eigenvalues for 2x2 matrices provides a solid foundation for more advanced linear algebra concepts and applications. It reinforces your understanding of determinants, matrix operations, and polynomial solutions, skills that are essential in many scientific and engineering disciplines.

准备好计算了吗?

跳过手动工作并立即获得结果。

打开计算器

设置

隐私条款关于© 2026 PrimeCalcPro