Vector Addition

Combine vectors using component-wise addition and the parallelogram rule.

Interactive: Vector Addition

Drag the vectors to see their sum (dashed green line).

Vector A
(3.0, 4.0)
Vector B
(2.0, 1.0)
A + B
(5.0, 5.0)

Algebraic Addition

Add vectors by adding their corresponding components:

\[\vec{a} + \vec{b} = (a_1 + b_1, a_2 + b_2, ..., a_n + b_n)\]

Example

(3, 4) + (2, 1) = (3+2, 4+1) = (5, 5)

Geometric Methods

Head-to-Tail Method

Place the tail of the second vector at the head of the first. The sum is from the tail of the first to the head of the second.

Parallelogram Rule

Draw both vectors from the same point. Complete the parallelogram. The diagonal is the sum.

Vector Subtraction

Subtract by adding the negative:

\[\vec{a} - \vec{b} = \vec{a} + (-\vec{b})\]

Properties

  • Commutative: \(\vec{a} + \vec{b} = \vec{b} + \vec{a}\)
  • Associative: \((\vec{a} + \vec{b}) + \vec{c} = \vec{a} + (\vec{b} + \vec{c})\)
  • Identity: \(\vec{a} + \vec{0} = \vec{a}\)
  • Inverse: \(\vec{a} + (-\vec{a}) = \vec{0}\)

Applications

  • Physics: Net force, velocity composition
  • Navigation: Combining displacements
  • Graphics: Position updates, transformations
💡

Vector Addition Explained Simply

Think of vectors as trips or movements. When you add two vectors, you're simply combining two trips into one!

The Walking Analogy

Imagine you're walking in a city. You walk 3 blocks east and then 4 blocks north. Where did you end up? Exactly 3 blocks east and 4 blocks north from where you started! That's vector addition in action.

Now if your friend tells you to also walk 2 blocks east and 1 block north after that, your total trip becomes 5 blocks east and 5 blocks north. You just added the vectors (3,4) + (2,1) = (5,5)!

The Tip-to-Tail Method

This is the most intuitive way to visualize vector addition:

  1. Draw your first vector (arrow) starting from any point
  2. Draw your second vector starting from where the first one ended (the "tip")
  3. The sum is a new arrow from where you started to where you finished

It's like connecting your trips end-to-end. No matter which order you take the trips, you end up at the same destination!

Why It Works

Vector addition is just adding the horizontal parts together and the vertical parts together separately. If vector A takes you 3 right and 4 up, and vector B takes you 2 right and 1 up, together they take you (3+2) = 5 right and (4+1) = 5 up. Simple as that!

Frequently Asked Questions

What is vector addition?

Vector addition is the mathematical operation of combining two or more vectors to produce a resultant vector. It's performed by adding the corresponding components of each vector. For example, if vector A = (3, 4) and vector B = (2, 1), then A + B = (3+2, 4+1) = (5, 5). The resultant vector represents the combined effect of all the original vectors.

How do you subtract vectors?

Vector subtraction is performed by adding the negative of a vector. To subtract vector B from vector A, you reverse the direction of B (multiply by -1) and then add it to A. Mathematically: A - B = A + (-B). For components, subtract each component: if A = (5, 3) and B = (2, 1), then A - B = (5-2, 3-1) = (3, 2).

What is the parallelogram rule for vector addition?

The parallelogram rule is a geometric method for adding two vectors. Place both vectors so they start from the same point. Complete the parallelogram by drawing lines parallel to each vector. The diagonal of the parallelogram, starting from the common origin, represents the sum of the two vectors. This method visually demonstrates that vector addition is commutative (A + B = B + A).

What is the tip-to-tail (head-to-tail) method?

The tip-to-tail method (also called head-to-tail) is a graphical technique for adding vectors. Draw the first vector, then place the tail of the second vector at the tip (head) of the first. The resultant vector is drawn from the tail of the first vector to the tip of the last vector. This method works for adding any number of vectors and is especially useful for visualizing multi-vector sums.

Is vector addition commutative?

Yes, vector addition is commutative, meaning A + B = B + A. The order in which you add vectors doesn't affect the result. This can be visualized using the parallelogram rule, where both diagonals represent the same sum regardless of which vector you start with. This property makes vector calculations more flexible and is fundamental to many physics and engineering applications.

How do you add vectors in 3D?

Adding vectors in 3D follows the same principle as 2D: add corresponding components. If A = (a1, a2, a3) and B = (b1, b2, b3), then A + B = (a1+b1, a2+b2, a3+b3). For example, (1, 2, 3) + (4, 5, 6) = (5, 7, 9). The geometric interpretation extends to three dimensions, where the tip-to-tail method still applies in 3D space.

What is the zero vector in vector addition?

The zero vector (denoted as 0 or with a vector arrow) has all components equal to zero. It serves as the additive identity in vector addition, meaning A + 0 = A for any vector A. Adding the zero vector to any vector leaves it unchanged. In physics, the zero vector represents no displacement, no force, or no velocity - essentially "nothing" in vector form.

What is the inverse of a vector?

The inverse (or additive inverse) of a vector A is -A, which has the same magnitude but opposite direction. When you add a vector to its inverse, you get the zero vector: A + (-A) = 0. For a vector A = (3, 4), its inverse is -A = (-3, -4). This property is essential for vector subtraction, as A - B is defined as A + (-B).

How is vector addition used in physics?

Vector addition is fundamental in physics. It's used to find net force (combining multiple forces acting on an object), resultant velocity (like a boat crossing a river with current), total displacement (combining multiple movements), and equilibrium conditions. For example, if a 3N force pushes right and a 4N force pushes up, the resultant force is 5N at an angle - calculated using vector addition.

What is the difference between vector addition and scalar addition?

Scalar addition involves single numbers (like 3 + 5 = 8), while vector addition combines quantities that have both magnitude and direction. When adding scalars, you simply add values. With vectors, you must account for direction by adding corresponding components separately. Two 5-unit vectors don't always sum to 10 units - if they point in opposite directions, they cancel out to zero!