If I have a vector $v$ = (x1, x2) and I want to find the matrix A so that I may express the projected vector on an axis (Y=AX), how would I do this mathematically?
If there is a line through the plane I can use P($v$)=$v$ + t$n$ and then use that in solving the lines equation. I then find t, which I can use in my P($v$) to get the matrix A.
But I don't know how to use it when there is only an axis. The only way I can find it is by using common sense (if there is a vector in (1, 1), the projected vector on axis x1 in the plane Pi = (x1, x2) will be (1, 0) from which I can construct a matrix A. How should I solve it? I am only a HS senior so please don't over-complicate things haha
Given a vector, $v = \begin{bmatrix} x \\ y \end{bmatrix}$ find a 2x2 matrix, $A = \begin{bmatrix}a&b \\ c &d \end{bmatrix}$ such that $Av = \begin{bmatrix} 0 \\ y \end{bmatrix}$.
I guess you could multiply out the left hand side and simplify the resulting equations to find,
$A = \begin{bmatrix}0 & 0 \\ 0 & 1 \end{bmatrix}$ accomplishes the desired result but this seems easily observed and verified....
$\begin{bmatrix}0 & 0 \\ 0 & 1 \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} 0 \\ y \end{bmatrix}$