Understanding Velocity and Vector Addition
Velocity is a vector quantity that describes both the speed and direction of an object's motion. Unlike scalar speed, which has only magnitude, velocity requires both a numerical value and a direction to be fully specified. In one dimension, this is straightforward; in two dimensions, we separate velocity into horizontal (x) and vertical (y) components.
Vector addition follows the principle that components add algebraically. When multiple velocity vectors act on an object, the resultant velocity is found by summing all x-components together and all y-components together, then computing the magnitude and angle of the resulting vector. This method works for any number of velocity vectors and is fundamental to solving problems in projectile motion, relative velocity, and navigation.
Resultant Velocity Equations
To find the resultant velocity from individual velocity vectors, decompose each vector into components, sum them, then recombine:
vx = v₁·cos(θ₁) + v₂·cos(θ₂) + v₃·cos(θ₃) + v₄·cos(θ₄) + v₅·cos(θ₅)
vy = v₁·sin(θ₁) + v₂·sin(θ₂) + v₃·sin(θ₃) + v₄·sin(θ₄) + v₅·sin(θ₅)
vres = √(vx² + vy²)
θres = arctan(vy/vx)
v₁–v₅— Magnitude of each velocity vector in m/s or km/hθ₁–θ₅— Direction angle of each velocity, measured from the positive x-axis in degrees or radiansvx, vy— Horizontal and vertical components of the resultant velocityvres— Magnitude of the resultant velocityθres— Direction angle of the resultant velocity
Practical Example: Boat Crossing a River
Consider a boat crossing a river. The boat's velocity relative to the water is 15 km/h directed straight across (perpendicular to the banks). Meanwhile, the river current flows at 7 km/h parallel to the banks. These two velocity vectors—one perpendicular, one parallel—act simultaneously on the boat.
Setting the boat's velocity as the first vector at 90° and the current as the second at 0°:
- x-component: 15·cos(90°) + 7·cos(0°) = 0 + 7 = 7 km/h
- y-component: 15·sin(90°) + 7·sin(0°) = 15 + 0 = 15 km/h
- Resultant speed: √(7² + 15²) ≈ 16.6 km/h
- Direction: arctan(15/7) ≈ 65° from the bank
An observer on the shore sees the boat moving at 16.6 km/h at an angle, not straight across as the boat's engine intended.
Common Pitfalls in Velocity Vector Addition
Avoid these frequent mistakes when combining velocity vectors:
- Confusing angle measurement — Angles must be measured consistently—typically from the positive x-axis, counterclockwise. If a problem states a bearing or compass direction, convert it to standard mathematical angles first. Mixing conventions leads to incorrect component signs.
- Adding magnitudes instead of components — Never simply add the speeds: 15 + 7 = 22 km/h is wrong. You must decompose into x and y, add components separately, then use the Pythagorean theorem. The resultant magnitude is always less than or equal to the sum of individual magnitudes (triangle inequality).
- Ignoring direction in the result — A complete answer includes both magnitude and direction. Stating only the resultant speed without the angle leaves the problem half-answered. Always compute θres to show the actual trajectory the object follows.
- Handling zero or near-zero resultants — If two equal-magnitude velocities point in opposite directions, the resultant is zero—the object remains stationary. Floating-point rounding can produce tiny non-zero values; check if the resultant is negligibly small before interpreting results.
Resultant Velocity vs. Average Velocity
These concepts are often confused but are distinct. Resultant velocity is the vector sum of multiple simultaneous velocities; it describes the actual net motion at a given instant when several forces or flows act together. Average velocity, by contrast, is the total displacement divided by total time over a journey, and represents motion over an interval.
If an object's resultant velocity changes during its motion—for example, acceleration due to gravity in projectile motion—the average velocity over the full trajectory differs from the instantaneous resultant velocity at any moment. Resultant velocity is instantaneous; average velocity is retrospective and assumes net displacement and elapsed time.