📚 IB Mathematics: Dot Product of Vectors — Operations and Applications | IB数学:向量数量积(点乘)的运算与应用
Vectors form a fundamental pillar of the IB Mathematics curriculum, appearing in both Analysis and Approaches (AA) and Applications and Interpretation (AI) at Standard Level and Higher Level. Among vector operations, the dot product — also called the scalar product — is the more elementary of the two multiplications introduced (the other being the cross product). It takes two vectors and returns a single scalar, encoding information about both the lengths of the vectors and their relative direction. Mastering the dot product unlocks a range of tools: computing angles, testing perpendicularity, resolving projections, and solving real-world problems such as work done by a force.
向量是 IB 数学课程中的基石,在分析与方法(AA)和应用与解释(AI)两个方向的标准水平(SL)与高级水平(HL)中都占据重要地位。在向量的运算中,数量积——也叫点乘——是学生最先接触到的两种向量乘法中较为基础的一种(另一种是向量积/叉积)。它以两个向量为输入,输出一个标量,同时包含了向量的长度信息和它们之间的方向关系。掌握数量积,就好比掌握了一套工具箱:求夹角、判定垂直、计算投影、以及解决力做功等实际问题。
1. What Is the Dot Product? | 什么是点乘
Given two vectors a = (a₁, a₂, a₃) and b = (b₁, b₂, b₃) in three-dimensional space (or their two-dimensional analogues), the dot product is defined component-wise as the sum of the products of corresponding components.
给定三维空间中的两个向量 a = (a₁, a₂, a₃) 与 b = (b₁, b₂, b₃)(二维情形完全类似),点乘按分量定义:把两个向量对应分量分别相乘,再全部相加。
a ⋅ b = a₁b₁ + a₂b₂ + a₃b₃
In two dimensions the definition reduces to a ⋅ b = a₁b₁ + a₂b₂. For example, if a = (2, −1, 4) and b = (3, 0, −2), then a ⋅ b = 2(3) + (−1)(0) + 4(−2) = 6 + 0 − 8 = −2. Notice that the output is a real number, not a vector.
在二维情形下,定义退化为 a ⋅ b = a₁b₁ + a₂b₂。例如,若 a = (2, −1, 4),b = (3, 0, −2),则 a ⋅ b = 2(3) + (−1)(0) + 4(−2) = 6 + 0 − 8 = −2。注意:点乘的结果是一个实数,而不是向量。
2. Two Definitions and Their Equivalence | 两个定义及其内在联系
Besides the algebraic definition, the dot product has a geometric interpretation involving the angle θ between the two vectors, measured from 0 to π:
除了代数定义之外,点乘还有一个几何解释——把两个向量之间的夹角记为 θ(取值范围为 0 到 π):
a ⋅ b = |a||b| cos θ
To see why these two definitions agree, place the vectors so that they share the same initial point. The cosine rule applied to the triangle with sides |a|, |b| and |b − a| gives |b − a|² = |a|² + |b|² − 2|a||b|cos θ. Expanding the left-hand side using components yields |b|² + |a|² − 2a ⋅ b, and comparing the two expressions gives a ⋅ b = |a||b|cos θ.
为了理解两个定义为什么一致,可以把两个向量的起点移到同一点。对三边分别为 |a|、|b| 和 |b − a| 的三角形应用余弦定理,得到 |b − a|² = |a|² + |b|² − 2|a||b|cos θ。再用分量展开等号左边,得到 |b|² + |a|² − 2a ⋅ b。比较这两个式子,即得 a ⋅ b = |a||b|cos θ。
3. Core Properties of the Dot Product | 点乘的核心性质
These properties are frequently tested, either directly or as hidden steps in longer problems. Know them thoroughly.
下列性质在考试中经常直接或间接考查,务必熟练掌握。
| Property 性质 | Expression 表达式 |
| Commutative 交换律 | a ⋅ b = b ⋅ a |
| Distributive 分配律 | a ⋅ (b + c) = a ⋅ b + a ⋅ c |
| Scalar multiple 数乘结合 | (ka) ⋅ b = k(a ⋅ b) |
| Self dot product 自身点积 | a ⋅ a = |a|² |
| Zero vector 零向量 | a ⋅ 0 = 0 |
One caution: the dot product is not associative. Because a ⋅ b is a scalar, the expression (a ⋅ b) ⋅ c is not defined unless the scalar is first multiplied by c. Interpret such expressions carefully.
需要特别提醒:点乘不满足“结合律”。因为 a ⋅ b 是一个标量,表达式 (a ⋅ b) ⋅ c 并没有天然意义,除非先把标量与 c 做数乘。遇到这类写法要格外小心。
4. Computing the Angle Between Two Vectors | 计算两向量的夹角
Rearranging the geometric formula gives a direct way to find the angle θ between two nonzero vectors:
将几何定义变形,可以直接求出两个非零向量的夹角 θ:
cos θ = (a ⋅ b) / (|a||b|)
Because θ lies in [0, π], we have: cos θ > 0 means an acute angle; cos θ < 0 means an obtuse angle; cos θ = 0 means a right angle.
由于 θ ∈ [0, π],我们有:cos θ > 0 对应锐角;cos θ < 0 对应钝角;cos θ = 0 对应直角。
Worked example 例题: Let a = 2i + 3j − k and b = i − 4j + 2k. Then a ⋅ b = 2(1) + 3(−4) + (−1)(2) = −12. Also |a| = √(4 + 9 + 1) = √14 and |b| = √(1 + 16 + 4) = √21. Hence cos θ = −12/(√14 × √21), so θ ≈ 134.4° and the angle is obtuse.
例题:设 a = 2i + 3j − k,b = i − 4j + 2k。则 a ⋅ b = 2(1) + 3(−4) + (−1)(2) = −12。又有 |a| = √(4 + 9 + 1) = √14,|b| = √(1 + 16 + 4) = √21。因此 cos θ = −12/(√14 × √21),即 θ ≈ 134.4°,为钝角。
5. Orthogonality: A Zero Dot Product | 正交性:点乘为零意味着垂直
Two nonzero vectors are perpendicular if and only if their dot product is zero. This follows directly from the geometric formula: if θ = 90°, then cos θ = 0 and a ⋅ b = 0. Conversely, if a ⋅ b = 0 for nonzero vectors, then cos θ = 0, so θ = 90°.
两个非零向量互相垂直,当且仅当它们的点乘为零。这直接从几何
Published by TutorHao | IB 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