Vector addition by components is one of the most important tools in mechanics and force analysis. When several forces act at the
same time, the overall effect is described by a single vector called the resultant or net force.
Instead of trying to guess the combined length and direction directly from a picture, we usually resolve each vector into horizontal
and vertical components, add those components separately, and then reconstruct the final vector from the sums.
Component method
Suppose you have vectors
\(F_1, F_2, \dots, F_n\)
in a plane. If the \(i\)-th vector has x-component
\(F_{ix}\)
and y-component
\(F_{iy}\),
then the total x-component and y-component are
\[
\begin{aligned}
\Sigma F_x &= F_{1x} + F_{2x} + \cdots + F_{nx} \\
\Sigma F_y &= F_{1y} + F_{2y} + \cdots + F_{ny}
\end{aligned}
\]
The resultant vector is then
\[
\begin{aligned}
R &= \left(\Sigma F_x,\ \Sigma F_y\right)
\end{aligned}
\]
This is the cleanest way to combine many vectors because each component is added like an ordinary signed number.
Vectors already in component form
If a vector is already written as
\((x,y)\),
then no extra work is needed. Its components are already known:
\[
\begin{aligned}
F &= (F_x,\ F_y)
\end{aligned}
\]
For example,
\((10,0)\)
means 10 units in the positive x-direction and 0 units in the y-direction.
Likewise,
\((-5,8)\)
means 5 units to the left and 8 units upward.
Vectors entered in polar form
Sometimes a vector is given by its magnitude and direction angle instead of by its components. If a vector has magnitude
\(F\)
and angle
\(\theta\)
measured counterclockwise from the positive x-axis, then
\[
\begin{aligned}
F_x &= F\cos\theta \\
F_y &= F\sin\theta
\end{aligned}
\]
This is why the calculator supports polar form. Before adding vectors, each polar vector is first converted into Cartesian
components.
Magnitude and direction of the resultant
After computing the component sums, the magnitude of the resultant is found with the Pythagorean theorem:
\[
\begin{aligned}
|R| &= \sqrt{(\Sigma F_x)^2 + (\Sigma F_y)^2}
\end{aligned}
\]
The direction angle must be computed carefully. A simple inverse tangent of
\(\Sigma F_y / \Sigma F_x\)
can lose quadrant information, so the better formula is the two-argument arctangent:
\[
\begin{aligned}
\theta &= \operatorname{atan2}(\Sigma F_y,\ \Sigma F_x)
\end{aligned}
\]
This returns the correct angle based on the signs of both components.
Worked sample from the calculator
Use the three sample forces
\((10,0)\),
\((0,15)\),
and
\((-5,8)\).
Step 1. Add the x-components.
\[
\begin{aligned}
\Sigma F_x &= 10 + 0 + (-5) \\
&= 5
\end{aligned}
\]
Step 2. Add the y-components.
\[
\begin{aligned}
\Sigma F_y &= 0 + 15 + 8 \\
&= 23
\end{aligned}
\]
Step 3. Write the resultant vector.
\[
\begin{aligned}
R &= (5,23)
\end{aligned}
\]
Step 4. Compute its magnitude.
\[
\begin{aligned}
|R| &= \sqrt{5^2 + 23^2} \\
&= \sqrt{25 + 529} \\
&= \sqrt{554}
\end{aligned}
\]
Step 5. Compute its direction.
\[
\begin{aligned}
\theta &= \operatorname{atan2}(23,5)
\end{aligned}
\]
This angle lies in the first quadrant because both x- and y-components are positive.
Physical meaning
In force problems, the resultant tells you the net effect of all applied forces. If the resultant is zero, the object is in
translational equilibrium. If the resultant is not zero, then the object experiences a net push in the direction of the resultant.
The equilibrant is the vector that would exactly cancel the resultant. It has the same magnitude as
\(R\)
but points in the opposite direction:
\[
\begin{aligned}
E &= -R
\end{aligned}
\]
Why head-to-tail addition works
A geometric way to add vectors is to place them head-to-tail in sequence. The arrow from the starting point of the first vector to
the final point of the last vector is the resultant. The component method and the head-to-tail method produce the same answer.
The reason is that vector addition is independent of the order of translation of the arrows, provided their magnitudes and
directions are preserved.
Common mistakes
| Mistake |
Why it is wrong |
Correct idea |
| Adding magnitudes directly |
Vector direction matters, not just length |
Add x-components and y-components separately |
| Using the wrong sign |
Left/down components are negative |
Track the sign of every component carefully |
| Using \(\tan^{-1}(y/x)\) without quadrant care |
It can return the wrong direction angle |
Use \(\operatorname{atan2}(y,x)\) |
| Mixing degrees and radians |
Trig results change completely |
Stay consistent with the selected angle mode |
Summary
| Quantity |
Formula |
Meaning |
| Polar to x-component |
\(F_x = F\cos\theta\) |
Horizontal part of the vector |
| Polar to y-component |
\(F_y = F\sin\theta\) |
Vertical part of the vector |
| Net x-component |
\(\Sigma F_x = \sum F_{ix}\) |
Total horizontal effect |
| Net y-component |
\(\Sigma F_y = \sum F_{iy}\) |
Total vertical effect |
| Resultant magnitude |
\(|R| = \sqrt{(\Sigma F_x)^2 + (\Sigma F_y)^2}\) |
Size of the net vector |
| Resultant direction |
\(\theta = \operatorname{atan2}(\Sigma F_y,\Sigma F_x)\) |
Correct quadrant-aware direction |
| Equilibrant |
\(E = -R\) |
Vector that exactly balances the resultant |