Gauss Elimination Algorithm
For any continuous function f(x),
- Start
- Read Number of Unknowns: n
- Read Augmented Matrix (A) of n by n+1 Size
- Transform Augmented Matrix (A)
to Upper Trainagular Matrix by Row Operations.
- Obtain Solution by Back Substitution.
- Display Result.
- Stop
Gauss Elimination Method is a procedure for solving systems of linear equation. It is also known as Row Reduction Technique. In this method, the problem of systems of linear equation having n unknown variables, matrix having rows n and columns n+1 is formed. This matrix is also known as Augmented Matrix. After forming n x n+1 matrix, matrix is transformed to upper trainagular matrix by row operations. Finally result is obtained by Back Substitution.
Calculate