framåtsubstitution
Framåtsubstitution, or forward substitution, is a numerical method for solving systems of linear equations of the form Lx = b, where L is a lower triangular matrix. It is commonly used as part of LU decomposition, where a matrix A is factored into A = LU and the original system is solved by first solving Ly = b and then Ux = y.
The method proceeds from the top row to the bottom. For each i from 1 to n,
Requirements and efficiency: L must be square, lower triangular, and have nonzero diagonal entries to avoid
Applications: It is widely used after computing an LU decomposition of a matrix A, solving Ly =
Relationship to other methods: Forward substitution is the counterpart to backward substitution, which solves Ux = b