A basic operation is to split a vector into components with respect to a coordinate system. The x-component gives the amount of the vector in the x-direction and the y-component gives the amount in the y-direction.
Take: +x = right and +y = up. To find the components v, draw this vector as the hypotenuse of a right triangle, with the other two sides parallel to the x and y axes. Then:
Horizontal component:
cos(θ) | = |
|
, so | vx = v cos(θ) |
Including the positive direction from the diagram, vx = +v cos(θ)
Vertical component:
sin(θ) | = |
|
, so | vy = v sin(θ) |
Including the negative direction from the diagram, vy = -v sin(θ)
If v = 3.5 and θ = 25 degrees, then: vx = 3.5 cos(25) = 3.2 vy = -3.5 sin(25) = -1.5
Final result: v = 3.2 -1.5