Equations to matrices

We saw that linear equations can be concisely written in matrix notation as [Maple Math] . For example, the equations
[Maple Math]
can be displayed as :

> matrix(3,3,[0,1,2,1,-1,3,2,1,11])*X=matrix(3,1,[1,3,1]);

[Maple Math]

We form an augmented matrix
(
[Maple Math] | [Maple Math] ) from these and call it [Maple Math] .

> M:=augment(matrix(3,3,[0,1,2,1,-1,3,2,1,11]),matrix(3,1,[1,3,1]));

[Maple Math]

>