Vectors cannot be added by ordinary numerical addition alone because each vector has both magnitude and direction. Their addition is defined geometrically.
Triangle Law of Vector Addition
If two vectors are represented by two sides of a triangle taken in order (head-to-tail), then their sum is represented by the third side of the triangle taken from the tail of the first vector to the head of the second vector.
If AB=a and BC=b, then
AC=a+b.
Parallelogram Law of Vector Addition
If two vectors acting at the same point are represented by the adjacent sides of a parallelogram, then their sum is represented by the diagonal of the parallelogram through the common initial point.
These two laws are equivalent ways of visualizing vector addition.
Properties of Vector Addition
Commutative Law:a+b=b+a
Associative Law:(a+b)+c=a+(b+c)
Additive Identity:a+0=a
Additive Inverse:
For every vector a, there exists a vector −a such that
a+(−a)=0.
These algebraic properties make vector addition behave similarly to ordinary algebra, while still preserving direction.
Multiplication of a Vector by a Scalar
When a vector a is multiplied by a scalar λ, the result is another vector written as λa.
Its magnitude becomes
∣λa∣=∣λ∣∣a∣
Its direction remains the same as a if λ>0.
Its direction becomes opposite to a if λ<0.
If λ=0, then
λa=0.
So scalar multiplication changes the size of a vector and may reverse its direction, but it does not create any new direction unrelated to the original vector.
Properties of Scalar Multiplication
Let a and b be vectors, and k,m be scalars.
k(a+b)=ka+kb
(k+m)a=ka+ma
k(ma)=(km)a
1a=a
(−1)a=−a
These rules are fundamental in simplifying vector expressions.
Components of a Vector and Algebraic Operations
Let
a=a1i^+a2j^+a3k^,b=b1i^+b2j^+b3k^
and let λ be a scalar.
This component form makes vector algebra very convenient because it reduces geometric operations to ordinary algebra on numbers.
Vector Joining Two Points:
If
P1(x1,y1,z1),P2(x2,y2,z2),
then the vector from P1 to P2 is
P1P2=(x2−x1)i^+(y2−y1)j^+(z2−z1)k^.
This formula is used constantly in coordinate geometry and 3D vector problems.
4. Section Formula
Let A and B be two points with position vectors a and b respectively.
Internal Division: If a point R divides the line segment AB internally in the ratio m:n, that is,
AR:RB=m:n,
then the position vector of R is
r=m+nna+mb.
This is often also written as
r=m+nmb+na,
which is the same formula written in a reordered way.
External Division: If R divides AB externally in the ratio m:n, then
r=m−nmb−na.
Midpoint Formula: If R is the midpoint of AB, then it divides the segment in the ratio 1:1, so
r=2a+b.
These formulas are extremely useful in coordinate geometry, especially when finding points dividing line segments in given ratios.
Example 1: Addition of Vectors in Component Form
Find the sum of the vectors a=i^−2j^+k^, b=−2i^+4j^+5k^, and c=i^−6j^−7k^.
Since the coefficient of i^ is zero, it may be omitted.
Answer:−4j^−k^
Example 2: Magnitude of a Resultant Vector
If a=2i^+2j^−5k^ and b=2i^+j^+3k^, find the magnitude of the vector a+b.
Solution:
Step 1: First add the vectors component-wise.
a+b=(2+2)i^+(2+1)j^+(−5+3)k^=4i^+3j^−2k^
Step 2: Use the magnitude formula.
∣a+b∣=42+32+(−2)2
Step 3: Simplify.
∣a+b∣=16+9+4=29
Answer:29
Example 3: Unit Vector in the Direction of a Sum
Find the unit vector in the direction of the sum of the vectors a=2i^+2j^−5k^ and b=2i^+j^+3k^.
Solution:
Step 1: First find the sum.
c=a+b=4i^+3j^−2k^
Step 2: Find its magnitude.
∣c∣=42+32+(−2)2=29
Step 3: Divide the vector by its magnitude to get the unit vector.
c^=∣c∣c=294i^+3j^−2k^
Hence,
c^=294i^+293j^−292k^
Answer:294i^+293j^−292k^
Example 4: Vector Joining Two Points
Find the vector joining the points P(2,3,0) and Q(−1,−2,−4) directed from P to Q.
Solution:
Step 1: Use the formula
PQ=(x2−x1)i^+(y2−y1)j^+(z2−z1)k^
Step 2: Substitute the coordinates of P(2,3,0) and Q(−1,−2,−4).
PQ=(−1−2)i^+(−2−3)j^+(−4−0)k^
Step 3: Simplify.
PQ=−3i^−5j^−4k^
Answer:−3i^−5j^−4k^
Example 5: Solving Vector Equations
Find a vector x such that 2a−b+x=0, where a=3i^−j^+2k^ and b=i^+2j^−k^.
Solution:
Step 1: Rearrange the equation.
x=−2a+b=b−2a
Step 2: Substitute the given vectors.
x=(i^+2j^−k^)−2(3i^−j^+2k^)
Step 3: Multiply out the scalar.
x=(i^+2j^−k^)−(6i^−2j^+4k^)
Step 4: Combine like terms.
x=(1−6)i^+(2−(−2?))
We should carefully subtract component-wise:
x=(1−6)i^+(2−(−2?))j^+(−1−4)k^
Since subtracting (−2j^) is equivalent to adding 2j^, the j^-component is
2−(−2)=4
Thus,
x=−5i^+4j^−5k^
Answer:−5i^+4j^−5k^
Example 6: Internal Division (Section Formula)
Find the position vector of a point R which divides the line joining two points P and Q whose position vectors are i^+2j^−k^ and −i^+j^+k^ respectively, in the ratio 2:1 internally.
Solution:
Step 1: Let
p=i^+2j^−k^,q=−i^+j^+k^
and the ratio be 2:1.
Step 2: Use the internal division formula:
r=2+12q+1p
Step 3: Substitute the vectors.
r=32(−i^+j^+k^)+(i^+2j^−k^)
Step 4: Expand and simplify.
r=3−2i^+2j^+2k^+i^+2j^−k^r=3−i^+4j^+k^
Step 5: Write in simplified form.
r=−31i^+34j^+31k^
Answer:−31i^+34j^+31k^
Example 7: External Division (Section Formula)
Find the position vector of a point R which divides the line joining points with position vectors i^+2j^−k^ and −i^+j^+k^ in the ratio 2:1 externally.
Solution:
Step 1: Let
p=i^+2j^−k^,q=−i^+j^+k^
Step 2: Use the external division formula:
r=2−12q−1p
Step 3: Substitute and simplify.
r=2(−i^+j^+k^)−(i^+2j^−k^)r=−2i^+2j^+2k^−i^−2j^+k^r=−3i^+3k^
Answer:−3i^+3k^
Example 8: Midpoint Formula
Find the position vector of the midpoint of the line segment joining the points P(2,3,4) and Q(4,1,−2).
Solution:
Step 1: Write the position vectors of the two points.
p=2i^+3j^+4k^q=4i^+j^−2k^
Step 2: Apply the midpoint formula.
r=2p+q
Step 3: Add the vectors.
r=2(2i^+3j^+4k^)+(4i^+j^−2k^)r=26i^+4j^+2k^
Step 4: Divide by 2.
r=3i^+2j^+k^
Answer:3i^+2j^+k^
Example 9: Proving a Triangle is Right-Angled
Show that the points A, B, and C with position vectors a=3i^−4j^−4k^, b=2i^−j^+k^, and c=i^−3j^−5k^, respectively, form the vertices of a right-angled triangle.
Solution:
Step 1: Find the side vectors.
AB=b−a=(2−3)i^+(−1−(−4))j^+(1−(−4))k^=−i^+3j^+5k^BC=c−b=(1−2)i^+(−3−(−1))j^+(−5−1)k^=−i^−2j^−6k^CA=a−c=(3−1)i^+(−4−(−3))j^+(−4−(−5))k^=2i^−j^+k^
Step 2: Find the squares of the side lengths.
∣AB∣2=(−1)2+32+52=1+9+25=35∣BC∣2=(−1)2+(−2)2+(−6)2=1+4+36=41∣CA∣2=22+(−1)2+12=4+1+1=6
Step 3: Check the Pythagorean relation.
∣AB∣2+∣CA∣2=35+6=41=∣BC∣2
Since the square of one side equals the sum of the squares of the other two sides, the triangle is right-angled.
To identify the right angle: AB and AC meet at point A, so the angle at A is the right angle.
Answer: Proved. The triangle is right-angled at A.
Example 10: Collinear Points using Vectors
Show that the points A(2,6,3), B(1,2,7), and C(3,10,−1) are collinear.
Solution:
Step 1: Find the vectors AB and BC.
AB=(1−2)i^+(2−6)j^+(7−3)k^=−i^−4j^+4k^BC=(3−1)i^+(10−2)j^+(−1−7)k^=2i^+8j^−8k^
Step 2: Compare the two vectors.
BC=−2(−i^−4j^+4k^)=−2AB
Step 3: Since one vector is a scalar multiple of the other, they are parallel. Because these vectors share the common point B, the three points must lie on the same straight line.
Answer: Proved.
Ready to test your knowledge?
Take a quick interactive quiz on this topic —
free, works without login.