datarekha

Eigen-properties & Transforms

Once you know an eigenvalue, you know it for A², A⁻¹, and A + cI for free. Plus the symmetric and triangular facts GATE asks as 'which is always true'.

8 min read Advanced GATE DA Lesson 26 of 122

What you'll learn

  • How eigenvalues transform: A^k → λ^k, A⁻¹ → 1/λ, A + cI → λ + c (same eigenvector)
  • A symmetric real matrix has real eigenvalues and orthogonal eigenvectors
  • A triangular matrix's eigenvalues are its diagonal entries
  • An idempotent matrix (P² = P) has eigenvalues only in `{0, 1}`

Before you start

Finding eigenvalues is work. The payoff: once you have them for A, you get them for free for , A⁻¹, A + 5I, and so on — no re-solving. GATE leans on this hard, usually as a multi-select (“which of the following are always true”). Knowing the handful of transform rules and the symmetric/triangular facts turns those questions into instant marks.

How eigenvalues transform

Start from A v = λ v. Watch what happens to that same eigenvector v under common operations:

  • Powers: A² v = A(Av) = A(λv) = λ(Av) = λ²v. In general A^k has eigenvalue λ^k.
  • Inverse: from Av = λv, multiply by A⁻¹ and divide by λ: A⁻¹v = (1/λ)v. So A⁻¹ has eigenvalue 1/λ (provided λ ≠ 0).
  • Shift: (A + cI)v = Av + cv = λv + cv = (λ + c)v. So A + cI has eigenvalue λ + c.
same eigenvector v throughout — only λ changesAλAⁿλⁿA⁻¹1 / λA + cIλ + c
The eigenvector never moves; each transform just maps the eigenvalue λ to a new number.

The explorer makes the “direction is preserved” part concrete: an eigenline of A is also an eigenline of and A + cI — the line is fixed, only the scaling along it changes.

Three structural facts GATE loves

Beyond the transforms, three matrix shapes come with guaranteed eigenvalue properties — prime “always true” material:

  • Symmetric real matrix (A = Aᵀ): all eigenvalues are real, and eigenvectors for distinct eigenvalues are orthogonal. (This is why covariance matrices, which are symmetric, always give real variance directions.)
  • Triangular matrix: the eigenvalues are exactly the diagonal entries — read them straight off.
  • Idempotent matrix (P² = P — applying it twice does nothing more than once): every eigenvalue is in {0, 1}. Proof: from Pv = λv, apply P again — P²v = λ²v, but P² = P so λ²v = λv, giving λ² = λ, i.e. λ(λ − 1) = 0. Projection matrices are the classic example.

How GATE asks this

Almost always a MSQ (“which of the following statements is/are always TRUE?”). The options mix the transform rules (, A⁻¹, A + cI) with the symmetric/triangular/idempotent facts, often planting one false statement (e.g. “every matrix is diagonalizable”). GATE DA 2025 ran exactly this style around the condition A³ = A (worked below). Evaluate each option independently against the rules above — there is no shortcut, but no real computation either.

Worked example — a real GATE DA 2025 question

A real matrix A satisfies A³ = A. Among several statements, decide whether “A and have the same rank” is always true.

Work it through the eigenvalues. From Av = λv, applying A twice gives A³v = λ³v. But A³ = A, so λ³v = λv, hence:

λ³ = λ   →   λ(λ² − 1) = 0   →   λ ∈ {0, 1, −1}

So every eigenvalue is 0, 1, or −1. Now compare ranks via , whose eigenvalues are λ²:

λ  ∈ { 0,  1, −1 }
λ² ∈ { 0,  1,  1 }

A non-zero eigenvalue of A (±1) stays non-zero in (becomes 1), and a zero eigenvalue stays zero. The count of non-zero eigenvalues — and hence the rank — is unchanged, so “A and have the same rank” is always true. (This is GATE DA 2025.)

A second quick drill on the transforms. Suppose A has eigenvalues 2 and 3:

A²        →  2² , 3²        =  4 , 9
A⁻¹       →  1/2 , 1/3
A + 5I    →  2 + 5 , 3 + 5  =  7 , 8

Each result keeps the same eigenvectors as A; only the eigenvalues move.

Quick check

Quick check

0/5
Q1A has an eigenvalue λ = 4. What is the corresponding eigenvalue of A⁻¹?numerical answer — type a number
Q2A has eigenvalues 2 and 3. What is the largest eigenvalue of A² + 3I?numerical answer — type a number
Q3A real matrix satisfies A³ = A (the 2025 setup). Which values can be an eigenvalue of A? (select all that apply)select all that apply
Q4Which statements are ALWAYS true? (select all that apply)select all that apply
Q5A is a 3×3 idempotent matrix (P² = P) with trace 2. What is its rank?numerical answer — type a number

Sign in to track your progress

Completed lessons, your XP, level, and streak save to your account — it's free and takes a few seconds.

Explore further

Glossary terms

Related lessons

Skip to content