In numerical analysis, the Schur complement method, named after Issai Schur, is the basic and the earliest version of non-overlapping domain decomposition method, also called iterative substructuring. A finite element problem is split into non-overlapping subdomains, and the unknowns in the interiors of the subdomains are eliminated. The remaining Schur complement system on the unknowns associated with subdomain interfaces is solved by the conjugate gradient method.
Suppose we want to solve the Poisson equation
-\Deltau=f, u|\partial\Omega=0
\left[\begin{matrix}A11&0&A1\Gamma\ 0&A22&A2\Gamma\ A\Gamma&A\Gamma&A\Gamma\Gamma\end{matrix}\right]\left[\begin{matrix}U1\ U2\ U\Gamma\end{matrix}\right]=\left[\begin{matrix}F1\ F2\ F\Gamma\end{matrix}\right],
The Schur complement method proceeds by noting that we can find the values on the interface by solving the smaller system
\SigmaU\Gamma=F\Gamma-A\Gamma
-1 | |
A | |
11 |
F1-A\Gamma
-1 | |
A | |
22 |
F2,
\Sigma=A\Gamma\Gamma-A\Gamma
-1 | |
A | |
11 |
A1\Gamma-A\Gamma
-1 | |
A | |
22 |
A2\Gamma.
-1 | |
A | |
11 |
-1 | |
A | |
22 |
Once we know the values on the interface, we can find the interior values using the two relations
A11U1=F1-A1\GammaU\Gamma, A22U2=F2-A2\GammaU\Gamma,
The multiplication of a vector by the Schur complement is a discrete version of the Poincaré - Steklov operator, also called the Dirichlet to Neumann mapping.
There are two benefits of this method. First, the elimination of the interior unknowns on the subdomains, that is the solution of the Dirichlet problems, can be done in parallel. Second, passing to the Schur complement reduces condition number and thus tends to decrease the number of iterations. For second-order problems, such as the Laplace equation or linear elasticity, the matrix of the system has condition number of the order 1/h2, where h is the characteristic element size. The Schur complement, however, has condition number only of the order 1/h.
For performances, the Schur complement method is combined with preconditioning, at least a diagonal preconditioner. The Neumann - Neumann method and the Neumann - Dirichlet method are the Schur complement method with particular kinds of preconditioners.
When a fast function is utilized, especially in low cost parallel computers, the Schur complement method is relatively efficient.[1]