Solving System of Linear Equation by Gaussian Elimination
Solving linear equation by matrix inverse method is difficult when a system has more than 3 equations and 3 unknown variables. hence, Gaussian elimination is preferred for solving system of linear equations, which has N linear equations and N unknown variables. Gaussian elimination is performed by two steps. they, upper triangular matrix back substitution System of Linear Equation by Gaussian Elimination - algorithm Given - system of Linear equations represents it in matrix form -: A - coefficient matrix X - unknown vector b - non-homogeneous vector form augmented matrix, A|b convert augmented matrix, A|b into upper triangular matrix, U by row operation U = A|b ...