Matrix Exponential Method

Graduate Depth 78 in the knowledge graph I know this Set as goal
Unlocks 45 downstream topics
matrix-exponential fundamental-matrix solution-formula

Core Idea

The solution to dx/dt = Ax, x(0) = x₀ is x(t) = e^(At)x₀, where e^(At) is the matrix exponential. If A = PDP⁻¹ (diagonalizable), then e^(At) = Pe^(Dt)P⁻¹ is easy to compute. The matrix exponential encodes all solution behavior and naturally handles initial conditions. It is the matrix analog of the scalar solution x(t) = e^(at)x₀.

Explainer

You already know how to solve the scalar ODE dx/dt = ax: the answer is x(t) = e^(at)x₀, where x₀ is the initial condition. The system dx/dt = Ax, where x is a vector and A is a matrix, is the exact same equation with scalars replaced by matrices. The solution has the same form: x(t) = e^(At)x₀. The only new ingredient is understanding what e^(At) means when A is a matrix.

The matrix exponential is defined by the same power series as the scalar exponential: e^(At) = I + At + (At)²/2! + (At)³/3! + ⋯, where I is the identity matrix. This definition is always valid but computing it directly requires summing infinitely many matrices — impractical for explicit solutions. This is where diagonalization from linear algebra rescues you. If A = PDP⁻¹, where D is diagonal, then:

The matrix e^(Dt) is trivial because D is diagonal: e^(Dt) is just the diagonal matrix with entries e^(λ₁t), e^(λ₂t), ..., where λ₁, λ₂, ... are the eigenvalues of A. Diagonalization transforms the hard problem of exponentiating a general matrix into the easy problem of exponentiating a diagonal one.

The geometric picture is illuminating. The columns of P are eigenvectors of A. In the eigenvector basis, the coupled system dx/dt = Ax decouples into independent scalar equations, each of the form du/dt = λu. The matrix exponential reassembles these decoupled solutions back into the original coordinates. Each eigenvalue governs the behavior of one "mode" of the system: negative real eigenvalues correspond to decaying modes, positive real eigenvalues to growing modes, and purely imaginary eigenvalues to oscillatory modes. The long-term behavior of the system is dominated by the eigenvalue with the largest real part — a fact that makes the eigenvalue structure of A the central object in stability analysis.

Practice Questions 5 questions

Prerequisite Chain

Counting to 10Counting to 20Understanding ZeroThe Number ZeroCounting to FiveOne-to-One CorrespondenceCombining Small Groups Within 5Addition Within 10Addition Within 20Two-Digit Addition Without RegroupingTwo-Digit Addition with RegroupingAddition Within 100Repeated Addition as MultiplicationMultiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Two-Digit by One-Digit DivisionDivision with RemaindersRemainders and Quotients in DivisionDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueReading and Writing DecimalsComparing and Ordering DecimalsAdding and Subtracting DecimalsMultiplying DecimalsDividing DecimalsDividing FractionsMixed Number ArithmeticOrder of OperationsInteger Order of OperationsVariable ExpressionsCombining Like TermsOne-Step EquationsTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesAngle Pairs: Complementary, Supplementary, and VerticalParallel Lines and TransversalsCorresponding AnglesAlternate Interior AnglesTriangle Angle Sum TheoremExterior Angle TheoremTriangle Inequality TheoremSimilar Triangles: AA SimilaritySimilar Triangles: SSS and SAS SimilarityProportions in Similar TrianglesRight Triangle Trigonometry IntroductionTrigonometric Ratios ReviewRadian MeasureConverting Between Degrees and RadiansThe Unit CircleGraphing Sine and CosineGraphing Tangent and Reciprocal Trigonometric FunctionsDerivatives of Trigonometric FunctionsAntiderivativesIndefinite IntegralsBasic Integration RulesRiemann SumsDefinite Integral DefinitionFundamental Theorem of Calculus Part 1Fundamental Theorem of Calculus Part 2U-SubstitutionIntegration by PartsSeparable Differential EquationsIntegrating Factor Method for First-Order Linear ODEsFirst-Order Linear Ordinary Differential EquationsSystems of First-Order Linear Differential EquationsMatrix Exponential Method

Longest path: 79 steps · 335 total prerequisite topics

Prerequisites (2)

Leads To (1)