Skip to main content

Jordan Normal Form Calculator

Calculate jordan normal form instantly with our math tool. Shows detailed work, formulas used, and multiple solution methods.

Share this calculator

Formula

A = PJP^(-1), where J is the Jordan normal form

Where A is the original matrix, J is the Jordan normal form (block-diagonal with Jordan blocks), and P is the invertible matrix of generalized eigenvectors. Each Jordan block has an eigenvalue on the diagonal and ones on the superdiagonal.

Worked Examples

Example 1: Defective Matrix with Jordan Block

Problem: Find the Jordan normal form of A = [[5, 4], [-1, -3]] if it has a repeated eigenvalue.

Solution: Characteristic polynomial: lambda^2 - 2*lambda - 15 + 4 = lambda^2 - 2*lambda - 11\nWait, let me recalculate: det(A - lambda*I) = (5-lambda)(-3-lambda) - (4)(-1)\n= -15 + 3*lambda - 5*lambda + lambda^2 + 4\n= lambda^2 - 2*lambda - 11\nDiscriminant = 4 + 44 = 48 > 0\nlambda1 = (2 + 6.928) / 2 = 4.464\nlambda2 = (2 - 6.928) / 2 = -2.464\nDistinct eigenvalues: Jordan form is diagonal.

Result: J = diag(4.464, -2.464) | Matrix is diagonalizable with distinct eigenvalues

Example 2: Matrix Requiring a Jordan Block

Problem: Find the Jordan normal form of A = [[3, 1], [0, 3]].

Solution: Characteristic polynomial: (3-lambda)^2 = 0\nlambda = 3 (algebraic multiplicity 2)\nA - 3I = [[0, 1], [0, 0]]\nThis is NOT the zero matrix, so rank(A-3I) = 1\nGeometric multiplicity = 2 - 1 = 1\nSince geometric < algebraic, need Jordan block.\nJordan form: J = [[3, 1], [0, 3]]

Result: J = [[3, 1], [0, 3]] | Non-diagonalizable, requires 2x2 Jordan block

Frequently Asked Questions

What is the Jordan normal form of a matrix?

The Jordan normal form (also called Jordan canonical form) is a special block-diagonal matrix that is similar to the original matrix. Every square matrix over the complex numbers has a Jordan normal form, written as J = P^(-1)AP, where P is an invertible matrix of generalized eigenvectors. The Jordan form consists of Jordan blocks along the diagonal. Each Jordan block corresponds to an eigenvalue and has that eigenvalue on the diagonal, ones on the superdiagonal, and zeros elsewhere. The Jordan form reveals the complete algebraic structure of a linear transformation, including information that eigenvalues alone cannot convey, particularly about the behavior of repeated eigenvalues and defective matrices.

What is a Jordan block?

A Jordan block is a square matrix with a single eigenvalue lambda on the main diagonal, ones on the superdiagonal (the diagonal just above the main diagonal), and zeros everywhere else. A k-by-k Jordan block is written as J_k(lambda). For example, a 3x3 Jordan block for eigenvalue 2 is [[2,1,0],[0,2,1],[0,0,2]]. A 1x1 Jordan block is simply the eigenvalue itself, which is equivalent to a diagonal entry. When a matrix is diagonalizable, its Jordan form consists entirely of 1x1 Jordan blocks (making it a diagonal matrix). Non-diagonalizable matrices require larger Jordan blocks, which encode the deficiency in eigenvectors. The size and number of Jordan blocks determine the matrix exponential and the behavior of the associated dynamical system.

When is a matrix diagonalizable versus requiring Jordan blocks?

A matrix is diagonalizable if and only if for every eigenvalue, the geometric multiplicity (number of linearly independent eigenvectors) equals the algebraic multiplicity (multiplicity as a root of the characteristic polynomial). When these multiplicities differ, the matrix is defective and requires Jordan blocks larger than 1x1. For example, the matrix [[2,1],[0,2]] has eigenvalue 2 with algebraic multiplicity 2 but geometric multiplicity 1 (only one independent eigenvector), so its Jordan form is a single 2x2 Jordan block. In contrast, the identity matrix [[2,0],[0,2]] has the same eigenvalue with geometric multiplicity 2, making it already diagonal. The Jordan form uniquely characterizes this distinction.

How do you find the Jordan normal form of a 2x2 matrix?

For a 2x2 matrix, the process depends on the eigenvalues. If the two eigenvalues are distinct, the Jordan form is diagonal with the eigenvalues on the diagonal. If the eigenvalue is repeated (algebraic multiplicity 2), compute A - lambda*I. If this equals the zero matrix, the original matrix is already lambda*I (a scalar matrix), and the Jordan form is diagonal. If A - lambda*I is nonzero but has rank 1, the geometric multiplicity is 1, and the Jordan form is [[lambda, 1], [0, lambda]]. For complex eigenvalues a +/- bi, the real Jordan form uses 2x2 blocks [[a, b], [-b, a]]. Jordan Normal Form Calculator handles all three cases automatically and identifies which case applies.

How is the Jordan form used in solving systems of differential equations?

The Jordan form simplifies solving systems of linear ordinary differential equations of the form dx/dt = Ax. If A = PJP^(-1), then the substitution y = P^(-1)x transforms the system into dy/dt = Jy, which is much easier to solve because J is block-diagonal. For a diagonal Jordan form, each equation decouples: y_i(t) = c_i * e^(lambda_i * t). For a 2x2 Jordan block with eigenvalue lambda, the solution involves both e^(lambda*t) and t*e^(lambda*t), reflecting the polynomial growth that occurs with defective eigenvalues. This polynomial-times-exponential behavior explains why repeated eigenvalues with Jordan blocks can cause resonance phenomena in physical systems like coupled oscillators.

What is the relationship between Jordan form and matrix powers?

The Jordan form greatly simplifies computing matrix powers. Since A = PJP^(-1), we have A^n = PJ^nP^(-1). Powers of Jordan blocks follow a binomial-like pattern: the (i,j) entry of J_k(lambda)^n is C(n, j-i) * lambda^(n-j+i) when j >= i and 0 otherwise, where C(n,k) is the binomial coefficient. For a diagonal matrix, A^n simply raises each diagonal entry to the n-th power. For a 2x2 Jordan block, J^n = [[lambda^n, n*lambda^(n-1)], [0, lambda^n]]. This formula is essential in computing matrix exponentials, solving recurrence relations, analyzing Markov chains, and studying the long-term behavior of discrete dynamical systems.

References