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:
- Draw your first vector (arrow) starting from any point
- Draw your second vector starting from where the first one ended (the "tip")
- 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!