Question

Orthogonal Vectors in R³: Basis and Linear Combination
Original question: imagine the values are vectors Given the set of vectors { [2, -1, 2], [1, -2, -2], [-2, -2, 1] } in R³, 1. Show that the vectors form an orthogonal set. 2. Without doing any further computation, explain why the vectors form a basis of R³. 3. Write the vector [3, 4, 5] as a linear combination of the given vectors, without using an RREF computation.
Expert Verified Solution
Answer
The set of vectors is orthogonal because the dot product of every distinct pair equals zero. Since the set consists of three non-zero orthogonal vectors in , they are linearly independent and thus form an orthogonal basis, allowing to be decomposed using orthogonal projections.
Explanation
-
Verify orthogonality using the dot product Let , , and . We compute the dot product for each pair: This confirms that the first and second vectors are perpendicular. The first and third vectors are also perpendicular. The second and third vectors are perpendicular, completing the proof of an orthogonal set.
-
Establish the basis property By theorem, any orthogonal set of non-zero vectors is linearly independent. Since we have a set of 3 linearly independent vectors in a 3-dimensional space (), the Basis Theorem implies they must span and thus form a basis.
-
Compute coefficients using orthogonal projection To express as , we use the formula :
For : The dot product of the target vector and the first basis vector. The squared magnitude of the first basis vector. The scalar weight for the first vector in the linear combination.
For : The dot product of the target vector and the second basis vector. The squared magnitude of the second basis vector. The scalar weight for the second vector in the linear combination.
For : The dot product of the target vector and the third basis vector. The squared magnitude of the third basis vector. The scalar weight for the third vector in the linear combination.
Final Answer
The vector written as a linear combination is:
Common Mistakes
- Normalization Confusion: Students often forget to divide by (the squared norm) and only calculate . This only works if the basis is orthonormal.
- Basis Theorem Oversight: Failing to mention that the vectors are non-zero; the internal dot products being zero implies independence only if no vector in the set is the zero vector.
Related Topics: Gram-Schmidt Process, Orthonormal Bases, Fourier Coefficients in Linear Algebra.
FAQ
How do you prove vectors are orthogonal?
Compute the dot product of each pair; if all are zero, they form an orthogonal set.
Why do these three vectors form a basis for R³?
Non-zero orthogonal vectors are linearly independent, and three such in 3D space span R³.
How to find coefficients for linear combination with orthogonal basis?
Use ci = (y · ui) / (ui · ui), the projection formula without normalization.