ArticleslgStudy

mathematics

Incomplete LU factorization

Incomplete LU factorization is a mathematics topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand Incomplete LU factorization rather than just read about it. In short: In numerical linear algebra, an incomplete LU factorization (abbreviated as ILU) of a matrix is a sparse approximation of the LU factorization often used as a preconditioner. Introduction Consider a sparse linear system A x = b {\displaystyle Ax=b} .

Key takeaways

  • Incomplete LU factorization belongs to mathematics; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect Incomplete LU factorization to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of Incomplete LU factorization from memory before moving on to harder problems.

Reference excerpt

In numerical linear algebra, an incomplete LU factorization (abbreviated as ILU) of a matrix is a sparse approximation of the LU factorization often used as a preconditioner.

Introduction Consider a sparse linear system A x = b {\displaystyle Ax=b} . These are often solved by computing the factorization A = L U {\displaystyle A=LU} , with L lower unitriangular and U upper triangular. One then solves L y = b {\displaystyle Ly=b} , U x = y {\displaystyle Ux=y} , which can be done efficiently because the matrices are triangular. For a typical sparse matrix, the LU factors can be much less sparse than the original matrix — a phenomenon called fill-in. The memory requirements for using a direct solver can then become a bottleneck in solving linear systems. One can combat this problem by using fill-reducing reorderings of the matrix's unknowns, such as the Minimum degree algorithm. An incomplete factorization instead seeks triangular matrices L, U such that A ≈ L U {\displaystyle A\approx LU} rather than A = L U {\displaystyle A=LU} . Solving for L U x = b {\displaystyle LUx=b} can be done quickly but does not yield the exact solution to A x = b {\displaystyle Ax=b} . So, we instead use the matrix M = L U {\displaystyle M=LU} as a preconditioner in another iterative solution algorithm such as the conjugate gradient method or GMRES.

Definition For a given matrix A ∈ R n × n {\displaystyle A\in \mathbb {R} ^{n\times n}} one defines the graph G ( A ) {\displaystyle G(A)} as

G ( A ) := { ( i , j ) ∈ N 2 : A i j ≠ 0 } , {\displaystyle G(A):=\left\lbrace (i,j)\in \mathbb {N} ^{2}:A_{ij}\neq 0\right\rbrace \,,}

which is used to define the conditions a sparsity pattern S {\displaystyle S} needs to fulfill

S ⊂ { 1 , … , n } 2 , { ( i , i ) : 1 ≤ i ≤ n } ⊂ S , G ( A ) ⊂ S . {\displaystyle S\subset \left\lbrace 1,\dots ,n\right\rbrace ^{2}\,,\quad \left\lbrace (i,i):1\leq i\leq n\right\rbrace \subset S\,,\quad G(A)\subset S\,.}

A decomposition of the form A = L U − R {\displaystyle A=LU-R} where the following hold

L ∈ R n × n {\displaystyle L\in \mathbb {R} ^{n\times n}} is a lower unitriangular matrix

U ∈ R n × n {\displaystyle U\in \mathbb {R} ^{n\times n}} is an upper triangular matrix

L , U {\displaystyle L,U} are zero outside of the sparsity pattern: L i j = U i j = 0 ∀ ( i , j ) ∉ S {\displaystyle L_{ij}=U_{ij}=0\quad \forall \;(i,j)\notin S}

R ∈ R n × n {\displaystyle R\in \mathbb {R} ^{n\times n}} is zero within the sparsity pattern: R i j = 0 ∀ ( i , j ) ∈ S {\displaystyle R_{ij}=0\quad \forall \;(i,j)\in S}

is called an incomplete LU decomposition (with respect to the sparsity pattern S {\displaystyle S} ). The sparsity pattern of L and U is often chosen to be the same as the sparsity pattern of the original matrix A. If the underlying matrix structure can be referenced by pointers instead of copied, the only extra memory required is for the entries of L and U. This preconditioner is called ILU(0).

… excerpt ends here. Continue reading the full article.

Worked examples

Example 1 — a first encounter with Incomplete LU factorization

Start with the simplest possible case. Write down what Incomplete LU factorization claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In mathematics, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to Incomplete LU factorization before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about Incomplete LU factorization ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of Incomplete LU factorization

In research
Incomplete LU factorization appears in mathematics research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses Incomplete LU factorization in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
Incomplete LU factorization is common in secondary-school and first-year university syllabi. It links to neighbouring topics Applied mathematics stubs, Numerical linear algebra, so understanding it makes those chapters shorter.
In everyday life
Look for Incomplete LU factorization outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study Incomplete LU factorization in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Incomplete LU factorization means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain Incomplete LU factorization out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Incomplete LU factorization in simple terms?

In numerical linear algebra, an incomplete LU factorization (abbreviated as ILU) of a matrix is a sparse approximation of the LU factorization often used as a preconditioner. Introduction Consider a sparse linear system A x = b {\displaystyle Ax=b} .

Why does Incomplete LU factorization matter?

Because it connects several mathematics ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study Incomplete LU factorization?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on Incomplete LU factorization.

Tags

  • Applied mathematics stubs
  • Numerical linear algebra

Keep exploring