Crout's Method — Definition, Formula & Examples
Crout's Method is a technique for decomposing a square matrix into the product , where is a lower triangular matrix and is an upper triangular matrix with ones on its diagonal. Once you have and , solving a system reduces to two simpler triangular solves.
Given an matrix with all leading principal minors nonzero, Crout's Method computes matrices (lower triangular) and (unit upper triangular, i.e., ) such that . The entries are determined column by column for and row by row for using the formulas for and for , with .
Key Formula
Where:
- = Entry in row i, column j of the lower triangular matrix L
- = Entry in row j, column i of the unit upper triangular matrix U (diagonal entries are 1)
- = Entry of the original matrix A
How It Works
You process each column in order. First, compute all entries in column of (rows ) by subtracting previously computed dot products from . Then compute all entries in row of (columns ) by dividing by the diagonal element . After obtaining and , solve by forward substitution, then solve by back substitution to get the solution .
Worked Example
Problem: Use Crout's Method to find the LU decomposition of .
Step 1: Compute column 1 of L. Since j=1, there are no sums to subtract.
Step 2: Compute row 1 of U. The diagonal entry is . For the off-diagonal entry, divide by .
Step 3: Compute column 2 of L and set .
Answer: , . You can verify .
Why It Matters
Crout's Method is a standard algorithm taught in introductory linear algebra and numerical analysis courses. It is especially efficient when you need to solve multiple systems with the same coefficient matrix but different right-hand sides, since the factorization is computed only once.
Common Mistakes
Mistake: Confusing Crout's Method with Doolittle's Method by placing the ones on the diagonal of L instead of U.
Correction: In Crout's Method, the unit diagonal belongs to U (the upper triangular factor). In Doolittle's Method, the unit diagonal belongs to L. Mixing these up produces incorrect factors.
