Vector Addition Calculator

Add two 2D vectors and find the resultant magnitude and direction.

Resultant x 4
Resultant y 2
Magnitude 4.472
Direction (°) 26.565

Formula: a + b = (aₓ + bₓ, a_y + b_y)

Step-by-step with your numbers:
1. Values used:
2. a x = 3
3. a y = 4
4. b x = 1
5. b y = -2
6.
7. Resultant x = 4
8. Resultant y = 2
9. Magnitude = 4.472
10. Direction = 26.565°
Did we solve your problem today?

Add vectors by combining their components, then find the resultant's size and direction.

How the Math Works

The Vector Addition Calculator uses the fundamental principle that vectors add component-wise. When you input two 2D vectors, the calculator takes each vector's horizontal (x) and vertical (y) components, then applies the formula a + b = (aₓ + bₓ, a_y + b_y) to find the resultant vector. This means simply adding the corresponding x-components together and the corresponding y-components together. Once the resultant vector's components are found, the calculator determines its magnitude using the Pythagorean theorem (c² = a² + b²) and finds its direction using the arctangent function (θ = tan⁻¹(y/x)).

Practical Applications

Engineers use vector addition to calculate net forces on structures, determining if bridges or buildings can withstand applied loads. In navigation, pilots and ship captains add wind or current vectors to their intended course vectors to find the actual path needed to reach their destination. Physicists apply this when analyzing projectile motion, breaking velocity and acceleration into components to predict trajectories. Computer graphics programmers use vector addition to move objects in 2D space by combining displacement vectors.

Day-to-Day Use

Vector addition helps you understand everyday motion and forces around you. When you walk against the wind, you're experiencing vector subtraction - your walking direction and the wind's direction combine to affect your path. Sports coaches use vector concepts to analyze ball trajectories, helping players understand optimal angles for kicks or throws. Even when parking a car, you intuitively consider the vector sum of your car's movement and any external forces like slope or wind to maneuver into the perfect spot.

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.