Solution to 7.9 #32 with Maple.

> with(LinearAlgebra):

> GramSchmidt([<1,2,1,0>,<1,1,2,0>,<0,1,1,-2>,<1,0,3,1>]);

[_rtable[137770392], _rtable[135447388], _rtable[13...

Notice it did not normalize the vecotrs. But, we can add this as an option.

> GramSchmidt([<1,2,1,0>,<1,1,2,0>,<0,1,1,-2>,<1,0,3,1>],normalized);

[_rtable[134761724], _rtable[135263788], _rtable[13...

>