Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

GaussJordan elimination - Wikipedia, the free encyclopedia

Page 1 of 1

GaussJordan elimination
From Wikipedia, the free encyclopedia

(Redirected from Gauss-Jordan reduction) In linear algebra, GaussJordan elimination is an algorithm for getting matrices in reduced row echelon form using elementary row operations. It is a variation of Gaussian elimination. Gaussian elimination places zeros below each pivot in the matrix, starting with the top row and working downwards. Matrices containing zeros below each pivot are said to be in row echelon form. Gauss Jordan elimination goes a step further by placing zeros above and below each pivot; such matrices are said to be in reduced row echelon form. Every matrix has a reduced row echelon form, and Gauss Jordan elimination is guaranteed to find it. It is named after Carl Friedrich Gauss and Wilhelm Jordan because it is a variation of Gaussian elimination as Jordan described in 1887. However, the method also appears in an article by Clasen published in the same year. Jordan and Clasen probably discovered GaussJordan elimination independently.[1] Computer science's complexity theory shows GaussJordan elimination to have a time complexity of for an n by n matrix (using Big O Notation). This result means it is efficiently solvable for most practical purposes. As a result, it is often used in computer software for a diverse set of applications. However, it is often an unnecessary step past Gaussian elimination. Gaussian elimination shares GaussJordan's time complexity of but is generally faster. Therefore, in cases in which achieving reduced row echelon form over row echelon form is unnecessary, Gaussian elimination is typically preferred.

Application to finding inverses


If GaussJordan elimination is applied on a square matrix, it can be used to calculate the matrix's inverse. This can be done by augmenting the square matrix with the identity matrix of the same dimensions and applying the following matrix operations:

If the original square matrix,

, is given by the following expression:

Then, after augmenting by the identity, the following is obtained:

By performing elementary row operations on the the following is the final result:

matrix until it reaches reduced row echelon form,

http://en.wikipedia.org/wiki/Gauss-Jordan_reduction

4/16/2012

You might also like