Resultant Velocity Calculator
The resultant velocity calculator allows you to add up to five different velocity vectors, determining the absolute value of the resultant velocity, its direction, and its x and y components.
The formula
resultant = √(Σx² + Σy²), direction = atan2(Σy, Σx)
Components first, always
Vectors cannot be added by adding magnitudes. Two 30-newton forces sum to 60 N if they point the same way, to zero if they oppose, and to 42.4 N at right angles. The reliable method is always the same: resolve each vector into x and y components, add the components separately, then recombine.
Use atan2 rather than atan for the direction. A plain arctangent of y over x cannot distinguish a resultant pointing down-left from one pointing up-right, because dividing two negatives gives a positive — atan2 keeps both signs and returns the correct quadrant.
The equilibrant is the resultant reversed. It is what you would have to add to bring the system to equilibrium, which makes it the useful answer in statics problems where the question is what force holds something still.