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.
Consider a sparse linear system
Ax=b
A=LU
Ly=b
Ux=y
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 ≈ LU
A=LU
LUx=b
Ax=b
M=LU
For a given matrix
A\in\Rn
G(A)
G(A):=\left\lbrace(i,j)\in\N2:Aij ≠ 0\right\rbrace,
S
S\subset\left\lbrace1,...,n\right\rbrace2 , \left\lbrace(i,i):1\leqi\leqn\right\rbrace\subsetS , G(A)\subsetS.
A decomposition of the form
A=LU-R
L\in\Rn
U\in\Rn
L,U
Lij=Uij=0 \forall (i,j)\notinS
R\in\Rn
Rij=0 \forall (i,j)\inS
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).
Concerning the stability of the ILU the following theorem was proven by Meijerink and van der Vorst.[1]
Let
A
A=\hat{L}\hat{U}
A=LU-R
|Lij|\leq|\hat{L}ij| \forall i,j
One can obtain a more accurate preconditioner by allowing some level of extra fill in the factorization. A common choice is to use the sparsity pattern of A2 instead of A; this matrix is appreciably more dense than A, but still sparse over all. This preconditioner is called ILU(1). One can then generalize this procedure; the ILU(k) preconditioner of a matrix A is the incomplete LU factorization with the sparsity pattern of the matrix Ak+1.
More accurate ILU preconditioners require more memory, to such an extent that eventually the running time of the algorithm increases even though the total number of iterations decreases. Consequently, there is a cost/accuracy trade-off that users must evaluate, typically on a case-by-case basis depending on the family of linear systems to be solved.
The ILU factorization can be performed as a fixed-point iteration in a highly parallel way.[2]