Linear Algebra/Standard matrix of a projection onto a plane

Click For Summary
SUMMARY

The discussion focuses on finding the standard matrix that projects points orthogonally onto the subspace V spanned by the vectors u=(-1,-2,-2,2) and v=(-1,-2,-2,-1). The solution involves constructing a matrix A=[u,v] and using it to derive the projection matrix through the relationship A=P^{-1}BP, where B is a diagonal matrix that maps the basis vectors to themselves and the orthogonal vectors to zero. The method emphasizes the importance of understanding the relationship between the matrix representation of vectors and their corresponding projections in linear algebra.

PREREQUISITES
  • Understanding of linear algebra concepts, specifically vector spaces and projections.
  • Familiarity with matrix operations, including multiplication and inversion.
  • Knowledge of canonical basis vectors in R^n.
  • Experience with constructing and manipulating matrices in mathematical contexts.
NEXT STEPS
  • Learn how to compute the inverse of a matrix, specifically for 4x4 matrices.
  • Study the properties of projection matrices in linear algebra.
  • Explore the Gram-Schmidt process for orthogonalization of vectors.
  • Investigate the application of dot products in constructing linear transformations.
USEFUL FOR

Students and professionals in mathematics, particularly those studying linear algebra, as well as anyone involved in computational mathematics or engineering requiring an understanding of vector projections and matrix representations.

Guidenable
Messages
18
Reaction score
0

Homework Statement



Let u=(-1,-2,-2,2) and v=(-1,-2,-2,-1) and let V=span{u,v}. (Just to be clear, u and v are column vectors)

Find the standard matrix that projects points (orthogonally) onto V.

Homework Equations


The Attempt at a Solution



I started by making a matrix A=[u,v], which represents V. From there, however, I don't know where to go.
 
Physics news on Phys.org
I have no idea what you mean by "matrix A= [u,v]" nor in what sense it "represents V". You can't make a 4 by 4 matrix from 2 vectors and a matrix does not "represent" a subspace.

The projection maps any vector in the plane to itself and any vector perpendicular to the plane to the 0 vector.

So you want a matrix that maps (-1, -2, 2, 2) to itself and maps (-1, -2, -2, -1) to itself. One vector perpendicular to both of those is (-6, 1, 0. 4) and another, independent, vector perpendicular to both is (-6, 0, 1, 4). You want a matrix that maps that two vectors to 0.

There are several ways of determining such a matrix. The most basic, and probably hardest, would be to write
\begin{bmatrix}a_{11} & a_{21} & a_{31} & a_{41} \\ a_{12} & a_{22} & a_{33} & a_{42} \\ a_{13} & a_{23} & a_{33} & a_{43} \\ a_{14} & a_{24} & a_{34} & a_{44}\end{bmatrix}
Multiply that by each of the four vectors, setting them equal to what I said above. That will give 16 equations for the 16 entries in the matrix.

A more sophisticated, and hopefully simpler to calculate, method would be this: if we were to use the four vectors as basis vectors, the matrix would be very simple:
B= \begin{bmatrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 \end{bmatrix}
since that maps the first two basis vectors to themselves and the last two to 0.

To get the form of the matrix in the standard basis, use the fact that the matrix constructed using the four vectors as columns,
P= \begin{bmatrix}1 & -1 & -6 & -6 \\ -2 & -2 & 1 & 0\\ 2 & -2 & 0 & 1 \\ 2 & -2 & 4 & 4\end{bmatrix}
maps the standard basis into those four vector and so its inverse, P^{-1} maps the four vectors into the standard basis. That means that P^{-1}BP would map each of the standard basis vectors into the four vectors, apply the transformation there, the map back to the standard basis basis. That is, your matrix is just A= P^{-1}BP where B and P are as above. I'll let you do the tedious part, finding P^{-1} and the multiplications.
 
Another approach is to use what you know about dot products to construct the linear function f(x) that gives you the projection of x onto V. Then the columns of the matrix will be given by f(ei) where ei are the canonical basis vectors.
 
"I have no idea what you mean by "matrix A= [u,v]" nor in what sense it "represents V". You can't make a 4 by 4 matrix from 2 vectors and a matrix does not "represent" a subspace."

What I meant was that if you took A= [u,v] and then said that Ax=z, where x is any vector in R2, then you have in fact represented V as the multiplication of a vector and a matrix. Sorry, now that I reread it, it does seem foolish, but it was my fault for not explaining myself properly.

Thank you very much to the both of you, this helped a lot!
 

Similar threads

Replies
15
Views
2K
Replies
1
Views
1K
  • · Replies 8 ·
Replies
8
Views
2K
Replies
5
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K