Skip to content
GRE Math overview

Public topic · GRE Math

Eigenvalues and Determinants

A free GRE Mathematics linear algebra note on determinant properties, the eigenvalue equation, trace and determinant as eigenvalue invariants, triangular matrices, and the basics of diagonalizability.

Concise answer

Determinants and eigenvalues are two ends of one computation: eigenvalues are the roots of det(AλI)=0\det(A - \lambda I) = 0, their sum is the trace, their product is the determinant, and a triangular matrix hands you its eigenvalues on the diagonal. Trace and determinant thus provide both a fast route into 2×22 \times 2 problems and an automatic check on the answer.

Definitions

Determinant
A scalar attached to a square matrix that is nonzero exactly when the matrix is invertible; for a $2 \times 2$ matrix it is $ad - bc$.
Eigenvalue and eigenvector
A scalar $\lambda$ and nonzero vector $\vec{x}$ with $A\vec{x} = \lambda \vec{x}$: the matrix acts on the eigenvector as pure scaling.
Characteristic polynomial
The polynomial $\det(A - \lambda I)$ in $\lambda$, whose roots (with multiplicity) are the eigenvalues of $A$.
Trace
The sum of the diagonal entries of a square matrix; it equals the sum of the eigenvalues counted with multiplicity.
Diagonalizable matrix
A matrix $A$ with a full set of $n$ linearly independent eigenvectors, so that $A = S \Lambda S^{-1}$ with $\Lambda$ diagonal.

Intuition

An eigenvector is a direction the matrix does not turn: the action collapses to multiplication by a single number. Asking when AλIA - \lambda I kills a nonzero vector is asking when that matrix is singular — which is exactly the statement det(AλI)=0\det(A - \lambda I) = 0, and is why determinants and eigenvalues are one subject.

Trace and determinant are the fingerprints of the eigenvalue set that survive without computing it: the characteristic polynomial's coefficients are built from them, so for a 2×22 \times 2 matrix, knowing trace and determinant is knowing the polynomial. Any claimed pair of eigenvalues that fails the sum or product check is wrong before any substitution.

Concept walkthrough

The determinant is governed by a short list of row properties: exchanging two rows flips the sign, the determinant is linear in each row separately (with the other rows held fixed), and adding a multiple of one row to another leaves it unchanged. Two consequences do most exam work: elimination preserves the determinant up to recorded sign flips and pivots, and a triangular matrix's determinant is simply the product of its diagonal entries. A zero determinant is the exact criterion for singularity — the bridge to eigenvalues.

The eigenvalue problem asks for the scalars λ\lambda that make AλIA - \lambda I singular, i.e. the roots of the characteristic polynomial det(AλI)\det(A - \lambda I). For a 2×22 \times 2 matrix that polynomial is always λ2(trA)λ+detA\lambda^2 - (\operatorname{tr} A)\lambda + \det A, so trace and determinant generate the problem outright. In general the eigenvalues (with multiplicity, over the complex numbers) sum to the trace and multiply to the determinant — a two-line verification that catches sign and arithmetic errors immediately. Triangular matrices are the shortcut case: AλIA - \lambda I stays triangular, so its determinant is the product of the diagonal entries aiiλa_{ii} - \lambda, and the eigenvalues are the diagonal entries themselves.

Diagonalizability is a counting question about eigenvectors: if an n×nn \times n matrix has nn linearly independent eigenvectors, stacking them in SS gives A=SΛS1A = S \Lambda S^{-1} with the eigenvalues on the diagonal of Λ\Lambda, and powers of AA collapse to powers of Λ\Lambda. Distinct eigenvalues force independent eigenvectors, so nn distinct eigenvalues guarantee diagonalizability; repeated eigenvalues may or may not leave enough eigenvectors — the identity matrix (diagonalizable) and a shear matrix (not) both have a repeated eigenvalue, which is the standard exam contrast.

After this page, you should be able to

  • Use the determinant's row properties — sign change under exchange, linearity in each row, product of diagonal entries for triangular matrices — to evaluate determinants without brute-force expansion.
  • Set up and solve the eigenvalue equation $\det(A - \lambda I) = 0$ for small matrices.
  • Check computed eigenvalues instantly against the trace (their sum) and the determinant (their product).
  • Read eigenvalues off a triangular matrix and decide diagonalizability from the count of independent eigenvectors.

Formulas and assumptions

2x2 determinant

det(abcd)=adbc\det \begin{pmatrix} a & b \\ c & d \end{pmatrix} = ad - bc

Variables

  • a, b: first-row entries
  • c, d: second-row entries

Assumptions

  • The matrix is square; det = 0 exactly when the matrix is singular.

Characteristic polynomial of a 2x2 matrix

λ2(trA)λ+detA=0\lambda^{2} - (\operatorname{tr} A)\,\lambda + \det A = 0

Variables

  • lambda: eigenvalue unknown
  • tr A: sum of diagonal entries
  • det A: determinant

Assumptions

  • A is 2x2; the roots, with multiplicity, are the eigenvalues.

Eigenvalue invariants

iλi=trA,iλi=detA\sum_{i} \lambda_i = \operatorname{tr} A, \qquad \prod_{i} \lambda_i = \det A

Variables

  • lambda_i: eigenvalues of A
  • tr A: trace
  • det A: determinant

Assumptions

  • Eigenvalues are counted with algebraic multiplicity, over the complex numbers.

Worked example

Eigenvalues of a 2x2 matrix, checked by trace and determinant

Find the eigenvalues of A=(4123)A = \begin{pmatrix} 4 & 1 \\ 2 & 3 \end{pmatrix} and verify them without re-solving.

  1. 1Compute the invariants first: trA=4+3=7\operatorname{tr} A = 4 + 3 = 7 and detA=(4)(3)(1)(2)=122=10\det A = (4)(3) - (1)(2) = 12 - 2 = 10.
  2. 2Write the characteristic polynomial from them: λ27λ+10=0\lambda^2 - 7\lambda + 10 = 0.
  3. 3Factor: λ27λ+10=(λ2)(λ5)\lambda^2 - 7\lambda + 10 = (\lambda - 2)(\lambda - 5), so λ1=2\lambda_1 = 2 and λ2=5\lambda_2 = 5.
  4. 4Check against the invariants: 2+5=7=trA2 + 5 = 7 = \operatorname{tr} A and 2×5=10=detA2 \times 5 = 10 = \det A — both pass.
  5. 5Optional eigenvector spot-check for λ=5\lambda = 5: (A5I)x=0(A - 5I)\vec{x} = \vec{0} gives rows (1,1)(-1, 1) and (2,2)(2, -2), so x=(1,1)\vec{x} = (1, 1); indeed A(1,1)T=(5,5)T=5(1,1)TA(1,1)^{T} = (5,5)^{T} = 5(1,1)^{T}.

The eigenvalues are λ=2\lambda = 2 and λ=5\lambda = 5; they sum to the trace 77 and multiply to the determinant 1010, and (1,1)(1,1) is an eigenvector for λ=5\lambda = 5. Since the two eigenvalues are distinct, AA is diagonalizable.

Common traps

  • Sign errors in det(AλI)\det(A - \lambda I) — subtract λ\lambda from the diagonal entries only, and expand carefully; the trace/determinant check catches most of these.
  • Assuming det(A+B)=detA+detB\det(A + B) = \det A + \det B; the determinant is linear in each row separately, not in the matrix as a whole.
  • Accepting x=0\vec{x} = \vec{0} as an eigenvector — eigenvectors are nonzero by definition, even though the zero vector satisfies the equation trivially.
  • Concluding a matrix with a repeated eigenvalue is not diagonalizable (or is) without counting independent eigenvectors; repetition alone decides nothing.

Question depth and domain coverage vary by exam. Practice answers are checked after submission.

Sources

  1. GRE Subject Test Content and StructureETS. Accessed 2026-07-06. Use as a cited source for exam facts; do not imply affiliation or reproduce protected test material.
  2. MIT OCW 18.06SC Linear Algebra, session: Properties of DeterminantsMIT OpenCourseWare. Accessed 2026-08-03. MIT OpenCourseWare materials are CC BY-NC-SA; attribute MIT OCW, link the source page, and avoid verbatim reuse beyond short cited references.
  3. MIT OCW 18.06SC Linear Algebra, session: Eigenvalues and EigenvectorsMIT OpenCourseWare. Accessed 2026-08-03. MIT OpenCourseWare materials are CC BY-NC-SA; attribute MIT OCW, link the source page, and avoid verbatim reuse beyond short cited references.
  4. MIT OCW 18.06SC Linear Algebra, session: Diagonalization and Powers of AMIT OpenCourseWare. Accessed 2026-08-03. MIT OpenCourseWare materials are CC BY-NC-SA; attribute MIT OCW, link the source page, and avoid verbatim reuse beyond short cited references.

Review and maintenance

Source-checked by publisher
Publisher record
Keiko Study editorial owner
Publisher placeholder; no individual credential claim is made yet.
Reviewer record
Technical reviewer pending
Placeholder only; this content is not labeled as reviewed by a named specialist.
Last source check
2026-08-03
Next scheduled review
2026-11-03

Recheck the ETS content-structure page and the MIT OCW 18.06SC determinant and eigenvalue session pages before each major GRE Mathematics preparation cycle.