Vector Addition Calculator
Add two 2D vectors and find the resultant magnitude and direction.
Add vectors by combining their components, then find the resultant's size and direction.
The math behind it
Add x-components and y-components separately. The magnitude is √(rₓ² + r_y²) and the direction is atan2(r_y, rₓ).
Worked example
(3, 4) + (1, −2) = (4, 2), magnitude ≈ 4.47.
FAQ
Can I subtract vectors the same way?
Yes — subtract the components instead of adding them.