Given a vector $\vec{v}$ and an angle $\alpha$ between the vector and $Oy$ or $Ox$ what is the quickest way to figure out the projections, or the $x$ and $y$ components?
How to figure out x and y components of a vector
1
$\begingroup$
trigonometry
analytic-geometry
-
0You should use Pythagoras theorem. – 2012-10-03
1 Answers
1
If the angle $\alpha$ is oriented counterclockwise (assuming right handed coordinates) from $Ox$ to $\vec{v}$, then the $x$ and $y$ coordinates are $|v|\cos(\alpha)$ and $|v|\sin(\alpha)$ resp, with proper signs. Similar results hold if the angle is from $Oy$, or orientations are different.