How to get a vector from its length and angle

2.1k Views Asked by At

How can I get the vector when I know its length and angle?

E.g. length = 3 and angle = 40°.

2

There are 2 best solutions below

1
On BEST ANSWER

If by "angle of the vector" you mean the angle between the vector and the positive side of the $\;x$-axis and counterclockwise, which is the usual agreement, then

$$x=3\cos40^\circ\;,\;\;y=3\sin40^\circ\;,\;\;\text{and the vector is then}\;\;\binom xy$$

4
On

In polar coordinates, you already do!

Otherwise draw a picture with horizontal leg of length $x$ and vertical leg of length $y$, take the sine and cosine of the angle and solve for $x$ and $y$.