📚 IB Math: Vectors — Foundations and Operations | IB数学:向量的基础与运算
Vectors are one of the most powerful tools in mathematics, bridging the gap between algebra and geometry. In the IB Mathematics curriculum, a solid understanding of vector notation, geometric interpretation, and algebraic operations is essential for success in both Analysis and Approaches (AA) and Applications and Interpretation (AI).
向量是数学中最强大的工具之一,它连接了代数与几何。在IB数学课程中,扎实掌握向量的表示法、几何意义及代数运算是分析与方法(AA)和应用与解释(AI)两个方向取得成功的必要条件。
1. What Is a Vector? | 什么是向量?
A vector is a quantity that has both magnitude (length) and direction. Unlike a scalar, which only has magnitude, a vector conveys information about “how much” and “which way”. Common examples include displacement, velocity, and force.
向量是既有大小(长度)又有方向的量。与只有大小的标量不同,向量同时传达“多少”和“向哪个方向”的信息。常见的例子包括位移、速度和力。
In two dimensions, a vector can be written as:
v = (x, y) 或 v = xᵢ + yⱼ
In three dimensions, this extends to:
v = (x, y, z) 或 v = xᵢ + yⱼ + zₖ
Here, i, j, and k are unit vectors along the x, y, and z axes respectively, and x, y, z are the components of the vector.
在二维中,向量可以写成:
v = (x, y) 或 v = xᵢ + yⱼ
在三维中,这扩展为:
v = (x, y, z) 或 v = xᵢ + yⱼ + zₖ
其中,i、j、k分别是沿x轴、y轴和z轴的单位向量,而x、y、z是向量的分量。
2. Position Vectors and Displacement | 位置向量与位移
A position vector specifies the location of a point relative to the origin O. For a point P(x, y, z), the position vector is written as OP = (x, y, z).
位置向量指明一个点相对于原点O的位置。对于点P(x, y, z),其位置向量写作OP = (x, y, z)。
Given two points A and B with position vectors a and b, the displacement vector from A to B is:
AB = b − a
This vector represents the change in position when moving from A to B, and its magnitude equals the distance between the two points.
给定两个点A和B,其位置向量分别为a和b,从A到B的位移向量为:
AB = b − a
该向量表示从A移动到B时位置的变化,其大小等于两点之间的距离。
3. Vector Addition and Subtraction | 向量的加法与减法
Vector addition is performed component-wise. If u = (u₁, u₂, u₃) and v = (v₁, v₂, v₃), then:
u + v = (u₁ + v₁, u₂ + v₂, u₃ + v₃)
向量的加法按分量进行。若u = (u₁, u₂, u₃)且v = (v₁, v₂, v₃),则:
u + v = (u₁ + v₁, u₂ + v₂, u₃ + v₃)
Geometrically, vector addition follows the triangle law or the parallelogram law. Place the tail of v at the head of u; the resultant vector from the tail of u to the head of v is u + v.
在几何上,向量加法遵循三角形法则或平行四边形法则。将v的起点置于u的终点,从u的起点到v的终点的向量即为u + v。
Subtraction follows similarly:
u − v = (u₁ − v₁, u₂ − v₂, u₃ − v₃)
Geometrically, u − v is the vector from the head of v to the head of u when both tails coincide.
减法类似:
u − v = (u₁ − v₁, u₂ − v₂, u₃ − v₃)
在几何上,当u与v的起点重合时,u − v是从v的终点指向u的终点的向量。
4. Scalar Multiplication | 标量乘法
Multiplying a vector by a scalar k scales its magnitude by a factor of |k|, without changing its direction if k > 0. If k < 0, the direction reverses.
将一个向量乘以标量k,其大小缩放|k|倍。若k > 0,方向不变;若k < 0,方向反转。
k·v = k(x, y, z) = (kx, ky, kz)
For example, if v = (2, −3, 1), then 2v = (4, −6, 2) and −v = (−2, 3, −1). Scalar multiplication is distributive over vector addition: k(u + v) = ku + kv.
例如,若v = (2, −3, 1),则2v = (4, −6, 2),−v = (−2, 3, −1)。标量乘法对向量加法满足分配律:k(u + v) = ku + kv。
A particularly important case of scalar multiplication is the unit vector. To find a unit vector in the direction of v, divide v by its magnitude:
v̂ = v / |v|
标量乘法的一个重要特例是单位向量。求与v同方向的单位向量,只需将v除以其模长:
v̂ = v / |v|
5. Magnitude of a Vector | 向量的模
The magnitude (or length) of a vector is found using the Pythagorean theorem extended to three dimensions. For v = (x, y, z):
|v| = √(x² + y² + z²)
向量的模(或长度)通过将勾股定理推广到三维空间来求得。对于v = (x, y, z):
|v| = √(x² + y² + z²)
This is one of the most frequently used formulas in vector problems. For instance, if v = (3, 4, 12), then |v| = √(9 + 16 + 144) = √169 = 13. The magnitude of a displacement vector gives the straight-line distance between two points.
这是向量问题中最常用的公式之一。例如,如果v = (3, 4, 12),则|v| = √(9 + 16 + 144) = √169 = 13。位移向量的模给出了两点之间的直线距离。
Key properties of magnitude include:
- |v| ≥ 0, and |v| = 0 if and only if v = 0
- |kv| = |k|·|v|
模的重要性质包括:
- |v| ≥ 0,且|v| = 0当且仅当v = 0
- |kv| = |k|·|v|
6. The Dot Product | 点积(数量积)
The dot product is an operation that takes two vectors and returns a scalar. It is also called the scalar product. For vectors u = (u₁, u₂, u₃) and v = (v₁, v₂, v₃):
u · v = u₁v₁ + u₂v₂ + u₃v₃
点积是一种将两个向量映射为一个标量的运算,也称为数量积。对于向量u = (u₁, u₂, u₃)和v = (v₁, v₂, v₃):
u · v = u₁v₁ + u₂v₂ + u₃v₃
Equivalently, the dot product can be expressed in terms of the magnitudes and the angle θ between the two vectors:
u · v = |u|·|v|·cos θ
等价地,点积可以用两个向量的模以及它们之间的夹角θ来表示:
u · v = |u|·|v|·cos θ
The dot product is zero if and only if the two vectors are perpendicular (orthogonal), assuming neither vector is the zero vector. This provides a powerful test for perpendicularity.
当且仅当两个向量垂真(正交)时,点积为零(假定两个向量均不为零向量)。这为判断垂直提供了有力依据。
Properties of the dot product:
- Commutative: u · v = v · u
- Distributive: u · (v + w) = u · v + u · w
- u · u = |u|²
点积的性质:
- 交换律:u · v = v · u
- 分配律:u · (v + w) = u · v + u · w
- u · u = |u|²
7. The Angle Between Two Vectors | 两向量之间的夹角
Rearranging the dot product formula allows us to compute the angle between two vectors:
cos θ = (u · v) / (|u|·|v|)
重新整理点积公式,我们可以计算两个向量之间的夹角:
cos θ = (u · v) / (|u|·|v|)
Example: Find the angle between u = (1, 2, 2) and v = (2, 0, 2). First compute u · v = 1×2 + 2×0 + 2×2 = 6. Then |u| = √(1+4+4) = 3, and |v| = √(4+0+4) = 2√2. Therefore cos θ = 6 / (3 × 2√2) = 1/√2, which gives θ = 45°.
例如:求u = (1, 2, 2)与v = (2, 0, 2)之间的夹角。先计算u · v = 1×2 + 2×0 + 2×2 = 6。然后|u| = √(1+4+4) = 3,|v| = √(4+0+4) = 2√2。因此cos θ = 6 / (3 × 2√2) = 1/√2,即θ = 45°。
This formula is particularly useful in geometry problems involving lines, planes, and 3D shapes, where finding angles between directions is required.
该公式在处理涉及直线、平面和三维图形的几何问题时特别有用,因为这类问题常常需要计算方向之间的夹角。
8. The Cross Product | 叉积(向量积)
The cross product is an operation on two vectors in three-dimensional space that produces a third vector perpendicular to both original vectors. For u = (u₁, u₂, u₃) and v = (v₁, v₂, v₃):
叉积是三维空间中两个向量的一种运算,产生一个同时垂直于两个原向量的第三个向量。对于u = (u₁, u₂, u₃)和v = (v₁, v₂, v₃):
u × v = (u₂v₃ − u₃v₂, u₃v₁ − u₁v₃, u₁v₂ − u₂v₁)
The magnitude of the cross product is given by:
|u × v| = |u|·|v|·sin θ
叉积的模由下式给出:
|u × v| = |u|·|v|·sin θ
Geometrically, |u × v| equals the area of the parallelogram formed by u and v. The direction of u × v is given by the right-hand rule.
在几何上,|u × v|等于由u和v构成的平行四边形的面积。u × v的方向由右手定则确定。
Example: For u = (1, 0, 0) and v = (0, 1, 0), we have u × v = (0×0 − 0×1, 0×0 − 1×0, 1×1 − 0×0) = (0, 0, 1) = k. This confirms the right-handed coordinate system convention.
例如:对于u = (1, 0, 0)和v = (0, 1, 0),u × v = (0×0 − 0×1, 0×0 − 1×0, 1×1 − 0×0) = (0, 0, 1) = k。这验证了右手坐标系的约定。
9. Vector Projection | 向量投影
The projection of vector u onto vector v is a vector that represents the component of u in the direction of v. The scalar projection is:
向量u在向量v上的投影表示u在v方向上的分量。标量投影为:
compv u = (u · v) / |v|
The vector projection is obtained by multiplying the scalar projection by the unit vector in the direction of v:
projv u = [(u · v) / |v|²] · v
向量投影通过将标量投影乘以v方向的单位向量来获得:
projv u = [(u · v) / |v|²] · v
Projection is widely used in physics (resolving forces into components), computer graphics (shadow effects), and machine learning (orthogonal transformations and regression residuals).
投影在物理学(力的分解)、计算机图形学(阴影效果)和机器学习(正交变换与回归残差)中有广泛的应用。
10. Applications in Coordinate Geometry | 在坐标几何中的应用
Vectors form the foundation of the “vector equation of a line”. A line passing through point A with position vector a and direction vector d can be written as:
向量是“直线的向量方程”的基础。过点A(位置向量为a)且方向向量为d的直线可写成:
r = a + t·d, t ∈ ℝ
where r is the position vector of any point on the line and t is a real parameter. Each value of t corresponds to a unique point on the line. The Cartesian form of a line in the direction (d₁, d₂, d₃) through point (a₁, a₂, a₃) can be expressed symmetrically as:
其中r是直线上任意一点的位置向量,t是实参数。t的每一个值对应直线上的一个唯一点。直线在方向(d₁, d₂, d₃)上过点(a₁, a₂, a₃)的笛卡尔形式可以对称地表示为:
(x − a₁)/d₁ = (y − a₂)/d₂ = (z − a₃)/d₃
In IB exam problems, you are often asked to determine whether lines are parallel, intersecting, or skew. Parallel lines have proportional direction vectors; if they intersect, there exists a common value of the parameters that satisfies all equations simultaneously; skew lines are non-parallel and do not intersect.
在IB考试中,经常要求判断直线是平行、相交还是异面。平行直线的方向向量成比例;若相交,则存在同时满足所有方程的公共参数值;异面直线既不平行也不相交。
11. Common Mistakes and Tips | 常见错误与提示
Students frequently make the following mistakes when working with vectors:
学生在处理向量问题时经常犯以下错误:
- Confusing the direction of vector AB with the direction of BA; they are opposites.
- Forgetting to divide by the magnitude when finding a unit vector.
- Applying the cross product to two-dimensional vectors without extending to three dimensions.
- Misapplying the right-hand rule when determining the direction of u × v.
- Treating the dot product as a vector rather than a scalar.
- 混淆向量AB与BA的方向,它们是相反的。
- 求单位向量时忘记除以模长。
- 将叉积应用于二维向量而未扩展到三维。
- 在确定u × v的方向时错误使用右手定则。
- 将点积视为向量而非标量。
To avoid these pitfalls, always write vectors in component form, systematically compute magnitudes, and check whether your final answer is a scalar or vector. Drawing a quick sketch can also help verify geometric intuition.
为避免这些陷阱,务必以分量形式写出向量,系统计算模长,并检查最终答案应是标量还是向量。快速画一个草图也有助于验证几何直觉。
12. Exam-Style Practice Question | 考试风格练习题
Consider the points A(1, 2, 3), B(3, −1, 2), and C(0, 1, 4).
已知点A(1, 2, 3)、B(3, −1, 2)和C(0, 1, 4)。
(a) Find the position vectors AB and AC.
(a) 求AB和AC的位置向量。
(b) Compute AB · AC and determine the angle between AB and AC.
(b) 计算AB · AC并求AB与AC之间的夹角。
(c) Calculate the cross product AB × AC and interpret its magnitude.
(c) 计算叉积AB × AC并解释其模的几何意义。
Solution:
解答:
(a) AB = (3−1, −1−2, 2−3) = (2, −3, −1); AC = (0−1, 1−2, 4−3) = (−1, −1, 1).
(a) AB = (3−1, −1−2, 2−3) = (2, −3, −1);AC = (0−1, 1−2, 4−3) = (−1, −1, 1)。
(b) AB · AC = 2×(−1) + (−3)×(−1) + (−1)×1 = −2 + 3 − 1 = 0. Since the dot product is zero, the vectors are perpendicular, meaning the angle is 90°.
(b) AB · AC = 2×(−1) + (−3)×(−1) + (−1)×1 = −2 + 3 − 1 = 0。由于点积为零,两个向量垂直,即夹角为90°。
(c) AB × AC = ((−3)×1 − (−1)×(−1), (−1)×(−1) − 2×1, 2×(−1) − (−3)×(−1)) = (−3 − 1, 1 − 2, −2 − 3) = (−4, −1, −5). The magnitude is |AB × AC| = √(16 + 1 + 25) = √42, which equals the area of the parallelogram spanned by AB and AC.
(c) AB × AC = ((−3)×1 − (−1)×(−1), (−1)×(−1) − 2×1, 2×(−1) − (−3)×(−1)) = (−3 − 1, 1 − 2, −2 − 3) = (−4, −1, −5)。其模为|AB × AC| = √(16 + 1 + 25) = √42,等于由AB和AC张成的平行四边形的面积。
Published by TutorHao | 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