Add, subtract, and scalar-multiply vectors using both the geometric (triangle/parallelogram) rule and coordinate arithmetic
Compute the dot producta⋅b=∣a∣∣b∣cosθ and apply the perpendicularity shortcuta⋅b=0
Determine whether two vectors are collinear using the scalar condition a=λb or the coordinate cross-test x1y2=x2y1
Solve exam problems that mix coordinate calculation, angle-finding, and geometric proof with vectors
Exam weight on past CSCA papers: ~8% (3–4 of 48 MCQs).
6.1 Vector Operations 向量的运算
A vector (向量) is a quantity with both magnitude (size) and direction. We write a or AB (from point A to point B). A plain number with no direction is a scalar (标量).
Key vocabulary
Term
Symbol
Meaning
Magnitude (模)
∣a∣
length of the arrow; always ≥0
Zero vector (零向量)
0
magnitude 0; direction undefined
Unit vector (单位向量)
a^
magnitude exactly 1
Opposite vector (反向量)
−a
same length, opposite direction
Equal vectors
a=b
same magnitude and same direction (position doesn't matter)
Addition: triangle rule and parallelogram rule
Triangle rule (三角形法则): Place the tail of b at the head of a. The sum a+b runs from the tail of a to the head of b.
Parallelogram rule (平行四边形法则): Place both vectors at the same tail point. The diagonal of the resulting parallelogram is a+b.
a+b=b+a(commutative) (a+b)+c=a+(b+c)(associative)
⚠️ Direction matters.AB+BC=AC (the middle point cancels). But AB+CB=AC — the arrow on CB runs the wrong way.
Subtraction
a−b=a+(−b)
Geometrically: place both vectors at the same tail; the difference points from the head of b to the head of a.
Scalar multiplication (数乘)
For scalar λ∈R:
∣λa∣=∣λ∣⋅∣a∣
λ>0: same direction as a
λ<0: opposite direction
λ=0: gives 0
Distributive laws: λ(a+b)=λa+λb,(λ+μ)a=λa+μa
Worked Example 6.1.A
In parallelogram ABCD, let AB=p and AD=q. Express AC and BD in terms of p and q.
Solution.
By the parallelogram rule, diagonal AC=AB+AD=p+q.
For the other diagonal, use the triangle rule through A: BD=BA+AD=−p+q=q−p.
AC=p+q,BD=q−p
🔑 Cancellation trick: In any chain AB+BC+CD=AD, intermediate points cancel like a telescoping sum. This is the fastest way to simplify multi-leg vector paths.
6.2 Dot Product 数量积(内积)
The dot product of two vectors is a scalar (number), not a vector:
a⋅b=∣a∣∣b∣cosθ
where θ is the angle between the vectors (0≤θ≤π).
Properties you must know
Property
Formula
Commutative
a⋅b=b⋅a
Self-dot
a⋅a=∣a∣2
Distributive
a⋅(b+c)=a⋅b+a⋅c
Scalar pull-out
(λa)⋅b=λ(a⋅b)
🔑 Perpendicularity shortcut:a⊥b⟺a⋅b=0. (Because cos90°=0.) This is the single most useful fact in this chapter — expect it on every exam.
Finding the angle between two vectors
Rearrange the dot product formula:
cosθ=∣a∣∣b∣a⋅b
The angle θ∈[0°,180°], so check the sign of the dot product first:
a⋅b>0⇒θ is acute
a⋅b=0⇒θ=90° (perpendicular)
a⋅b<0⇒θ is obtuse
Projection formula
The scalar projection of b onto a (the component of b in the direction of a):
projab=∣a∣a⋅b
Equivalently, ∣b∣cosθ.
Worked Example 6.2.A
Vectors a and b satisfy ∣a∣=2, ∣b∣=3, and the angle between them is 60°. Find a⋅b and ∣a+b∣.
Solution.
Step 1 — dot product: a⋅b=∣a∣∣b∣cos60°=2⋅3⋅21=3.
Step 2 — magnitude of sum (expand using ∣v∣2=v⋅v): ∣a+b∣2=(a+b)⋅(a+b)=∣a∣2+2a⋅b+∣b∣2=4+6+9=19. ∣a+b∣=19.
a⋅b=3,∣a+b∣=19
⚠️ Common mistake: Students write ∣a+b∣=∣a∣+∣b∣. This is only true when both vectors point in exactly the same direction. Always expand ∣a+b∣2 using the dot product.
6.3 Collinear Vectors 共线向量(平行向量)
Two non-zero vectors are collinear (共线, also called parallel, 平行) if they lie along parallel lines — i.e., one is a scalar multiple of the other.
Scalar condition
a∥b⟺∃λ∈R,a=λb(b=0)
The scalar λ can be positive (same direction) or negative (opposite direction).
Coordinate collinearity test
If a=(x1,y1) and b=(x2,y2), then:
a∥b⟺x1y2−x2y1=0⟺x1y2=x2y1
🔑 Memory aid: This is the cross-product condition. Think of it as the determinant x1x2y1y2=0. If this determinant equals zero, the vectors are parallel.
⚠️ Don't confuse collinear vectors with collinear points. Three pointsA, B, C are collinear iff AB∥AC — apply the vector collinearity test to the vectors, not the coordinates directly.
Worked Example 6.3.A
If a=(2,−1) and b=(k,3) are collinear, find k.
Solution.
Apply the collinearity condition x1y2=x2y1: 2⋅3=k⋅(−1)⟹6=−k⟹k=−6.
Check:b=(−6,3)=−3(2,−1)=−3a. ✓
k=−6
6.4 Vectors in Coordinate Form 向量的坐标表示
In a coordinate plane with unit vectors e1=(1,0) and e2=(0,1), every vector can be written as:
a=(a1,a2)=a1e1+a2e2
The ordered pair (a1,a2) is the component form of a.
Point-to-vector conversion
If A=(x1,y1) and B=(x2,y2), then:
AB=(x2−x1,y2−y1)
⚠️ Order matters:AB=B−A (head minus tail). BA=A−B=−AB.
Coordinate arithmetic
Let a=(a1,a2), b=(b1,b2), scalar λ.
Operation
Formula
Addition
a+b=(a1+b1,a2+b2)
Subtraction
a−b=(a1−b1,a2−b2)
Scalar multiplication
λa=(λa1,λa2)
Magnitude
∣a∣=a12+a22
Dot product
a⋅b=a1b1+a2b2
The coordinate dot product a⋅b=a1b1+a2b2 follows directly from expanding ∣a∣∣b∣cosθ — this is the formula you use in all numerical calculations.
Worked Example 6.4.A
Let a=(3,−2) and b=(−1,4).
(i) Find 2a−b. (ii) Find a⋅b. (iii) Find the angle θ between a and b.
🔑 Section formula: If D divides BC in ratio m:n (from B to C), then BD=m+nmBC. Memorise this — it appears in nearly every vector geometry question.
⚠️ Exam trap: When the problem asks "find the angle θ between vectors a and b", the answer must satisfy 0≤θ≤180° (or 0≤θ≤π). Vectors do not have a "signed" angle like slopes do.
Try it! 自测练习
Q1. In parallelogram ABCD, AB=a and BC=b. Express AC−BD in terms of a and b.
Q2. Vectors ∣p∣=5, ∣q∣=4, and p⋅q=−10. Find the angle between p and q.
Q3.a=(1,t) and b=(2,6). For what value of t are they collinear? For what value of t are they perpendicular?
Q4.A=(1,2), B=(4,−1), C=(5,3). Find AB⋅AC.
Q5. In triangle OAB, let OA=a and OB=b. M is the midpoint of AB. Show that OM=21(a+b).
Answers & explanations
Q1. In parallelogram ABCD: AC=a+b (diagonal via triangle rule). BD=BC+CD=b+(−a)=b−a (since CD=−AB=−a). Therefore: AC−BD=(a+b)−(b−a)=2a.
Q2.cosθ=∣p∣∣q∣p⋅q=5×4−10=20−10=−21. So θ=120°.
Section formula for ratio division; midpoint =21(a+b); match linear-combination coefficients in proofs
What's next → Unit 7 uses vector ideas directly: the slope of a line is related to a direction vector, and the perpendicular-line condition k1k2=−1 mirrors the dot-product perpendicularity rule a⋅b=0.