2 For a total of 4 points use the GramSchmidt process to fin
     2. For a total of 4 points use the Gram-Schmidt process to find an orthonormal basis for the space W Span 1 1 point for correctly stating the Gram-Schmidt algorithm, 2 points for cor- rectly implementing the algorithm and 1 point for correctly normalizing the resulting vectors. ANS: 0 25  
  
  Solution
Solution: (Gram-Schmidth Process)
Given W = Span { [4, 0, 3]T, [-1, 1, 0]T}. Let v1 = [4, 0, 3]T, v2 = [-1, 1, 0]T
Let w1 = v1 = [4, 0, 3]T
Next compute
w2 = v2 - [<v2,w1>/<w1,w1>]w1 = v2 - [<v2,v1>/<v1,v1>]v1
= [-1, 1, 0]T- (-4/25)[4, 0, 3]T = [(-1+16/25), 1, 12/25]T = [(-9/25), 1, 12/25]T
Thus w1, w2 form orthogonal basis for W. Normalize these vectors to obtain an
orthonormal basis {u1, u2} of W. We have ||w1||2 = 25, ||w2||2 = 850/650= 34/25.
So u1 = (1/5)[4, 0, 3]T, u2 = (5/ \\sqrt{34})[(-9/25), 1, 12/25]T= (1/ \\sqrt{850})[-9, 25, 12]T

