📚 Calculating Vector Products in Practice | 向量积的实际计算
The vector product (also called the cross product) is a fundamental operation in 3D vectors. Unlike the scalar product, which returns a number, the vector product returns a new vector perpendicular to both original vectors. This makes it indispensable for finding normals to planes, computing areas, and solving physics problems involving moments. This article walks through the calculation methods step by step, with AQA exam-style examples throughout.
向量积(又称叉积)是三维向量中的基本运算。与返回一个数的标量积不同,向量积返回的是一个垂直于两个原向量的新向量。这使得它在求平面法向量、计算面积以及解决涉及力矩的物理问题中不可或缺。本文将逐步讲解计算方法,并配有符合 AQA 考试风格的例题。
1. Definition of the Vector Product | 向量积的定义
Given two vectors a = (a₁, a₂, a₃) and b = (b₁, b₂, b₃), the vector product is written as a × b and is defined as:
a × b = (a₂b₃ − a₃b₂, a₃b₁ − a₁b₃, a₁b₂ − a₂b₁)
The result is a vector whose direction is perpendicular to both a and b, following the right-hand rule. If you curl the fingers of your right hand from a toward b, your thumb points in the direction of a × b.
给定两个向量 a = (a₁, a₂, a₃) 和 b = (b₁, b₂, b₃),向量积记为 a × b,定义为:
a × b = (a₂b₃ − a₃b₂, a₃b₁ − a₁b₃, a₁b₂ − a₂b₁)
其结果是一个同时垂直于 a 和 b 的向量,方向遵循右手定则。将右手手指从 a 弯向 b,拇指所指方向即为 a × b 的方向。
2. The Component Formula | 分量公式
The component formula is the most direct method. To apply it, write out each component of the two vectors, then apply the pattern: each component of the answer is found by multiplying the “outer” components and subtracting the “crossed” products. A useful mnemonic is to remember that the first component ignores the first components of both input vectors.
分量公式是最直接的方法。使用时,先写出两个向量的各分量,然后按照规律计算:答案的每个分量由”外侧”分量相乘后相减得到。一个有用的记忆方法是:结果的第一个分量忽略两个输入向量的第一个分量。
Worked Example 1: Let a = (2, −1, 3) and b = (1, 4, −2). Compute a × b.
例题1:设 a = (2, −1, 3),b = (1, 4, −2)。计算 a × b。
Applying the formula:
a × b = ((−1)(−2) − (3)(4), (3)(1) − (2)(−2), (2)(4) − (−1)(1))
= (2 − 12, 3 + 4, 8 + 1) = (−10, 7, 9)
We can verify the result is perpendicular to both original vectors by checking the scalar products:
a · (a × b) = 2(−10) + (−1)(7) + 3(9) = −20 − 7 + 27 = 0
Since both dot products equal zero, the result is indeed perpendicular to both a and b.
套用公式:
a × b = ((−1)(−2) − (3)(4), (3)(1) − (2)(−2), (2)(4) − (−1)(1))
= (2 − 12, 3 + 4, 8 + 1) = (−10, 7, 9)
可以通过点积验证结果垂直于两个原向量:
a · (a × b) = 2(−10) + (−1)(7) + 3(9) = −20 − 7 + 27 = 0
两个点积均为零,因此结果确实同时垂直于 a 和 b。
3. The Determinant Method | 行列式方法
An elegant alternative is to use a 3 × 3 determinant with the unit vectors i, j, k in the first row:
a × b = | i j k |
| a₁ a₂ a₃ |
| b₁ b₂ b₃ |
Expanding along the first row gives:
a × b = i(a₂b₃ − a₃b₂) − j(a₁b₃ − a₃b₁) + k(a₁b₂ − a₂b₁)
The determinant method is less prone to sign errors than memorising the component formula, because the alternating signs (+ − +) follow the standard cofactor expansion. Many AQA mark schemes accept either method, but examiners frequently award method marks for showing the determinant setup clearly.
另一种优雅的方法是使用 3 × 3 行列式,其中第一行放单位向量 i、j、k:
a × b = | i j k |
| a₁ a₂ a₃ |
| b₁ b₂ b₃ |
沿第一行展开得:
a × b = i(a₂b₃ − a₃b₂) − j(a₁b₃ − a₃b₁) + k(a₁b₂ − a₂b₁)
行列式方法比死记分量公式更不容易出错,因为正负交替的符号(+ − +)遵循标准余子式展开规则。在 AQA 的评分标准中,两种方法均可接受,但考官经常因清楚写出行列式而给方法分。
4. Properties of the Vector Product | 向量积的性质
The vector product satisfies several important algebraic properties that appear frequently in exam questions. You should know each one and when to apply it.
向量积满足若干重要的代数性质,这些性质在考题中经常出现。你应当熟悉每一条并知道何时应用。
- Anti-commutative: a × b = −(b × a). Swapping the order reverses the direction of the result.
- 反交换律:a × b = −(b × a)。交换顺序会使结果方向相反。
- Self-product is zero: a × a = 0 for any vector, since the angle between a vector and itself is 0° and sin 0° = 0.
- 自身向量积为零:任意向量 a × a = 0,因为向量与其自身的夹角为 0°,sin 0° = 0。
- Distributive over addition: a × (b + c) = a × b + a × c.
- 分配律:a × (b + c) = a × b + a × c。
- Scalar multiplication: (λa) × b = λ(a × b) = a × (λb).
- 数乘性质:(λa) × b = λ(a × b) = a × (λb)。
Parallel vectors satisfy a × b = 0, because sin 0° = sin 180° = 0. Exam questions sometimes ask you to find the value of an unknown component given that two vectors are parallel; setting the cross product to zero is the most reliable route.
平行向量满足 a × b = 0,因为 sin 0° = sin 180° = 0。考试中有时会给出两向量平行,要求求未知分量;此时令叉积为零是最稳妥的方法。
5. Geometric Interpretation | 几何意义
The magnitude of the vector product has a clear geometric meaning:
|a × b| = |a||b| sin θ
where θ is the angle between a and b. This expression is identical to the formula for the area of a parallelogram formed by the two vectors. The direction of a × b is perpendicular to the plane containing a and b.
向量积的模具有清晰的几何意义:
|a × b| = |a||b| sin θ
其中 θ 是 a 与 b 之间的夹角。这个表达式与由两向量构成的平行四边形的面积公式完全相同。a × b 的方向垂直于 a 与 b 所在平面。
The vector product is therefore a powerful tool for finding a normal vector to a plane: given any two non-parallel vectors lying in the plane, their cross product is a normal to that plane. This is the basis for converting a plane given by two direction vectors into cartesian form.
因此向量积是求平面法向量的有力工具:给定平面内任意两个不平行向量,它们的叉积就是该平面的法向量。这是将平面由两个方向向量表示转化为笛卡尔形式的基础。
6. Area of a Parallelogram and Triangle | 平行四边形与三角形的面积
Since |a × b| equals the area of the parallelogram spanned by a and b, the area of a triangle with sides a and b is half the magnitude of the cross product.
由于 |a × b| 等于由 a 和 b 张成的平行四边形的面积,因此以 a 和 b 为边的三角形面积等于叉积模的一半。
Area of parallelogram = |a × b|
Area of triangle = ½|a × b|
Worked Example 2: Find the area of the triangle with vertices A(1, 2, 0), B(3, 1, 2) and C(2, 4, 1).
例题2:求顶点为 A(1, 2, 0)、B(3, 1, 2)、C(2, 4, 1) 的三角形面积。
First define two vectors from A:
AB = (2, −1, 2), AC = (1, 2, 1)
Now compute the cross product:
AB × AC = ((−1)(1) − (2)(2), (2)(1) − (2)(1), (2)(2) − (−1)(1))
= (−1 − 4, 2 − 2, 4 + 1) = (−5, 0, 5)
Taking the magnitude:
|AB × AC| = √(25 + 0 + 25) = √50 = 5√2
Hence the area of the triangle is ½ × 5√2 = (5√2)/2 square units.
首先从 A 点出发定义两个向量:
AB = (2, −1, 2), AC = (1, 2, 1)
计算叉积:
AB × AC = ((−1)(1) − (2)(2), (2)(1) − (2)(1), (2)(2) − (−1)(1))
= (−1 − 4, 2 − 2, 4 + 1) = (−5, 0, 5)
求模:
|AB × AC| = √(25 + 0 + 25) = √50 = 5√2
因此三角形面积为 ½ × 5√2 = (5√2)/2 平方单位。
7. The Scalar Triple Product | 标量三重积
The scalar triple product is the scalar quantity a · (b × c). Geometrically, its absolute value equals the volume of the parallelepiped formed by the three vectors:
V = |a · (b × c)|
It can also be computed as the determinant of the 3 × 3 matrix whose rows (or columns) are the three vectors:
a · (b × c) = | a₁ a₂ a₃ ; b₁ b₂ b₃ ; c₁ c₂ c₃ |
If the scalar triple product is zero, the three vectors are coplanar. This is a very common AQA question: given three points, show they lie in a plane, or determine whether three vectors are coplanar.
标量三重积是标量 a · (b × c)。几何上,其绝对值等于三个向量构成的平行六面体的体积:
V = |a · (b × c)|
它也可以作为以三个向量为行(或列)的 3 × 3 矩阵的行列式来计算:
a · (b × c) = | a₁ a₂ a₃ ; b₁ b₂ b₃ ; c₁ c₂ c₃ |
若标量三重积为零,则三个向量共面。这是 AQA 常见题型:给定三个点,证明它们共面,或判断三个向量是否共面。
Worked Example 3: Determine whether the points P(1, 0, 2), Q(2, 1, 3), R(0, 2, 1) and S(3, 3, 2) are coplanar.
例题3:判断点 P(1, 0, 2)、Q(2, 1, 3)、R(0, 2, 1)、S(3, 3, 2) 是否共面。
Form three vectors from P:
PQ = (1, 1, 1), PR = (−1, 2, −1), PS = (2, 3, 0)
First compute PR × PS:
PR × PS = (2(0) − (−1)(3), (−1)(2) − (−1)(0), (−1)(3) − 2(2))
= (0 + 3, −2 − 0, −3 − 4) = (3, −2, −7)
Then compute PQ · (PR × PS):
PQ · (3, −2, −7) = 1(3) + 1(−2) + 1(−7) = 3 − 2 − 7 = −6 ≠ 0
Since the scalar triple product is non-zero, the four points are not coplanar.
从 P 点出发形成三个向量:
PQ = (1, 1, 1), PR = (−1, 2, −1), PS = (2, 3, 0)
先计算 PR × PS:
PR × PS = (2(0) − (−1)(3), (−1)(2) − (−1)(0), (−1)(3) − 2(2))
= (0 + 3, −2 − 0, −3 − 4) = (3, −2, −7)
再计算 PQ · (PR × PS):
PQ · (3, −2, −7) = 1(3) + 1(−2) + 1(−7) = 3 − 2 − 7 = −6 ≠ 0
由于标量三重积不为零,四点不共面。
8. Application: Moment of a Force | 应用:力的力矩
In mechanics, the moment of a force F acting at a position vector r relative to a point O is defined as:
M = r × F
The magnitude of the moment is |M| = |r||F| sin θ, which measures the rotational effect of the force about O. The direction of M is along the axis of rotation, given by the right-hand rule.
在力学中,力 F 作用于相对点 O 的位置向量 r 处时,其力矩定义为:
M = r × F
力矩的大小为 |M| = |r||F| sin θ,衡量力绕 O 点的转动效果。M 的方向沿转动轴,由右手定则确定。
Worked Example 4: A force F = (3, −2, 1) N acts at the point with position vector r = (1, 4, 2) m. Find the moment of the force about the origin.
例题4:力 F = (3, −2, 1) N 作用于位置向量 r = (1, 4, 2) m 处。求该力对原点的力矩。
M = r × F = (4(1) − 2(−2), 2(3) − 1(1), 1(−2) − 4(3))
= (4 + 4, 6 − 1, −2 − 12) = (8, 5, −14)
The moment is M = (8, 5, −14) N·m. Its magnitude is √(64 + 25 + 196) = √285 ≈ 16.88 N·m.
M = r × F = (4(1) − 2(−2), 2(3) − 1(1), 1(−2) − 4(3))
= (4 + 4, 6 − 1, −2 − 12) = (8, 5, −14)
力矩为 M = (8, 5, −14) N·m,其大小为 √(64 + 25 + 196) = √285 ≈ 16.88 N·m。
9. Common Mistakes and Exam Tips | 常见错误与考试技巧
Vector product questions are heavily method-marked in AQA papers, so showing clear working is essential. Below are the most frequent pitfalls and how to avoid them.
向量积问题在 AQA 试卷中得分点大部分集中在方法步骤上,因此写出清晰的过程至关重要。以下是最常见的错误及避免方法。
- Forgetting the minus sign: The middle component of the result is a₃b₁ − a₁b₃, not a₁b₃ − a₃b₁. Many students forget this and lose accuracy marks.
- 忘记中间分量的负号:结果的第二个分量为 a₃b₁ − a₁b₃,而不是 a₁b₃ − a₃b₁。许多学生忘记这一点而失分。
- Wrong order: a × b = −b × a. Always check which vector comes first in the problem statement.
- 顺序错误:a × b = −b × a。务必看清题目中哪个向量在前。
- Not verifying perpendicularity: A quick scalar product check (a · (a × b
Published by TutorHao | A-Level Mathematics Revision Series | aleveler.com
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导Cancel reply