Gauss Reduction, the fast way

First, let's make the matrix "A", which contains the coeficients of the variables in a set of linear equations:

> A:=matrix(3,3,[0,-1,2,2,-3,1,-4,5,2]);

[Maple Math]

Now, let's make the vector "b", which contains the constant terms in the set of linear equations:

> b:=vector([-7,7,3]);

[Maple Math]

Now, we make the augmented matrix

> Ab:=augment(A,b);

[Maple Math]

The linalg package has a command called "gausselim" which does Gauss Reduction:

> gausselim(Ab);

[Maple Math]

See how easy that was!

>