Vector Resolution
Resolving a vector into horizontal and vertical components.
Available module · Mathematics / Mechanics · Port 8505Learning objectives
By the end of this module, the learner should be able to:
- explain the difference between a scalar and a vector;
- resolve a vector into horizontal and vertical components;
- calculate components using sine and cosine;
- reconstruct the original vector from its components;
- explain why vector resolution is essential in engineering mechanics.
First-principles explanation
A scalar has magnitude only. A vector has both magnitude and direction. In engineering, forces, velocities, accelerations, and displacements are often vectors.
When a vector acts at an angle, it can be split into two perpendicular components. These components describe how much of the vector acts horizontally and how much acts vertically.
Equations and units
- F is the vector magnitude, for example force in newtons (N).
- θ is the angle measured from the horizontal axis.
- Fx is the horizontal component.
- Fy is the vertical component.
The original vector can be reconstructed using:
Worked example
Problem: A cable exerts a 100 N force at 30° above the horizontal. Resolve the force into components.
Known values:
- F = 100 N
- θ = 30°
Calculation:
Fx = 100 cos(30°) = 86.60 N
Fy = 100 sin(30°) = 50.00 N
Answer: The horizontal component is 86.60 N and the vertical component is 50.00 N.
Interactive simulator
The Vector Resolution simulator lets the learner adjust vector magnitude and angle, then observe the horizontal and vertical components change in real time.
Local launch command:
python -m streamlit run simulations/vector_resolution/streamlit_web_app.py --server.port 8505
Engineering meaning
Vector resolution is used before applying equilibrium equations or Newton's laws. A force acting at an angle cannot usually be analysed directly as a single number. It must be separated into components that act along chosen axes.
This appears in cable tensions, inclined planes, bridge supports, projectile motion, robot arms, and many other engineering systems.
Assumptions and limits
- The vector lies in a two-dimensional plane.
- The angle is measured from the positive horizontal axis.
- The horizontal and vertical axes are perpendicular.
- Out-of-plane effects are ignored.
Challenge questions
- Resolve a 50 N force acting at 60° above the horizontal.
- A cable applies a 200 N tension at 45°. What are Fx and Fy?
- Why must angled forces be resolved before applying equilibrium equations?
- What happens to Fx and Fy as the angle approaches 90°?