A-Level数学 3D向量 点积叉积 线面方程

Advertisements

A-Level数学 3D向量 点积叉积 线面方程

1. 从二维到三维:向量的维度扩展 From 2D to 3D: Extending Vectors into Space

A vector in three-dimensional space is an ordered triple of real numbers that represents both magnitude and direction. While 2D vectors describe motion on a flat plane (such as displacement across a map), 3D vectors capture the full spatial relationships needed in physics, engineering, and computer graphics. A 3D vector is written as a = (a₁, a₂, a₃) or in column form, where a₁, a₂, a₃ are the components along the x, y, and z axes respectively. The magnitude of a 3D vector extends the Pythagorean theorem: |a| = √(a₁² + a₂² + a₃²). This simple extension transforms 2D plane geometry into a full spatial framework capable of describing everything from electromagnetic fields to the trajectory of a drone.

三维空间中的向量是由三个实数组成的有序三元组,同时表示大小和方向。二维向量描述平面上的运动(如地图上的位移),而三维向量则捕捉物理、工程和计算机图形学中所需的完整空间关系。三维向量记作 a = (a₁, a₂, a₃) 或列向量形式,其中 a₁、a₂、a₃ 分别是沿 x、y、z 轴的分量。三维向量的模长是勾股定理的推广:|a| = √(a₁² + a₂² + a₃²)。这一简单的扩展将二维平面几何转变为完整的空间框架,能够描述从电磁场到无人机轨迹的一切。

2. 向量的基本运算:加减与标量乘法 Basic Vector Operations: Addition, Subtraction, and Scalar Multiplication

Vector addition in 3D follows the same component-wise rule as in 2D: a + b = (a₁+b₁, a₂+b₂, a₃+b₃). Geometrically, this corresponds to the triangle law or parallelogram law, where the resultant vector is the diagonal of the parallelogram formed by the two vectors. Scalar multiplication λa = (λa₁, λa₂, λa₃) stretches or compresses the vector by factor λ, and reverses direction if λ is negative. A unit vector in the direction of a is â = a/|a|, obtained by dividing each component by the magnitude. The standard basis vectors in 3D are i = (1,0,0), j = (0,1,0), and k = (0,0,1), forming an orthonormal right-handed set where i × j = k, j × k = i, and k × i = j.

三维向量加法遵循与二维相同的分量法则:a + b = (a₁+b₁, a₂+b₂, a₃+b₃)。几何上,这对应三角形法则或平行四边形法则,合向量是两向量构成的平行四边形的对角线。标量乘法 λa = (λa₁, λa₂, λa₃) 将向量按因子 λ 拉伸或压缩,若 λ 为负则反向。沿 a 方向的单位向量为 â = a/|a|,通过每个分量除以模长得到。三维空间中的标准基向量为 i = (1,0,0)、j = (0,1,0) 和 k = (0,0,1),构成一个标准正交右手系,满足 i × j = k、j × k = i、k × i = j。

3. 点积:两个向量之间的标量桥梁 The Dot Product: A Scalar Bridge Between Two Vectors

The dot product ( scalar product ) of two 3D vectors a and b is defined as a · b = a₁b₁ + a₂b₂ + a₃b₃. This operation takes two vectors and returns a single scalar, which encodes the angle between them through the relationship a · b = |a||b| cos θ, where θ is the angle between the vectors. When a · b = 0, the vectors are perpendicular ( orthogonal ), making the dot product a powerful test for perpendicularity. The dot product also gives the projection of one vector onto another: the scalar projection of a onto b is (a · b)/|b|, and the vector projection is ((a · b)/|b|²) b. These projection formulas are fundamental in physics for resolving forces and in computer graphics for calculating lighting and shadows. A critical property is commutativity: a · b = b · a, and distributivity over addition: a · (b + c) = a · b + a · c.

两个三维向量 a 和 b 的点积(标量积)定义为 a · b = a₁b₁ + a₂b₂ + a₃b₃。该运算接受两个向量并返回一个标量,通过关系式 a · b = |a||b| cos θ 编码了两向量之间的夹角,其中 θ 是两向量间的夹角。当 a · b = 0 时,两向量垂直(正交),使点积成为检验垂直性的有力工具。点积还可用于计算一个向量在另一个向量上的投影:a 在 b 上的标量投影为 (a · b)/|b|,向量投影为 ((a · b)/|b|²) b。这些投影公式在物理学中用于分解力,在计算机图形学中用于计算光照和阴影。关键性质包括交换律:a · b = b · a,以及对加法的分配律:a · (b + c) = a · b + a · c。

4. 叉积:三维空间独有的向量运算 The Cross Product: A Vector Operation Unique to 3D

The cross product a × b is defined only in three dimensions and produces a vector perpendicular to both a and b, with magnitude |a × b| = |a||b| sin θ. The direction follows the right-hand rule: curl your fingers from a toward b, and your thumb points in the direction of a × b. In component form, a × b = (a₂b₃ − a₃b₂)i + (a₃b₁ − a₁b₃)j + (a₁b₂ − a₂b₁)k. This can be memorized using the determinant of a 3×3 matrix with i, j, k in the first row. The magnitude |a × b| equals the area of the parallelogram spanned by a and b, making the cross product essential for calculating areas of triangles and parallelograms in 3D. Unlike the dot product, the cross product is anti-commutative: a × b = −(b × a). It is not associative: (a × b) × c is generally not equal to a × (b × c). However, it is distributive: a × (b + c) = a × b + a × c.

叉积 a × b 仅在三维空间中定义,产生一个同时垂直于 a 和 b 的向量,其模长为 |a × b| = |a||b| sin θ。方向遵循右手定则:四指从 a 弯向 b,拇指所指方向即为 a × b 的方向。分量形式为 a × b = (a₂b₃ − a₃b₂)i + (a₃b₁ − a₁b₃)j + (a₁b₂ − a₂b₁)k。这可以通过 3×3 行列式记忆,第一行为 i、j、k。模长 |a × b| 等于 a 和 b 张成的平行四边形面积,使叉积成为计算三维中三角形和平行四边形面积的核心工具。与点积不同,叉积是反交换的:a × b = −(b × a)。它不满足结合律:(a × b) × c 通常不等于 a × (b × c)。但它满足分配律:a × (b + c) = a × b + a × c。

5. 三重积:标量三重积与向量三重积 The Triple Products: Scalar and Vector

The scalar triple product a · (b × c) yields a scalar whose absolute value equals the volume of the parallelepiped formed by vectors a, b, and c. In determinant form, a · (b × c) = |a₁ a₂ a₃; b₁ b₂ b₃; c₁ c₂ c₃|. The sign indicates the orientation (right-handed or left-handed) of the three vectors. A zero scalar triple product means the three vectors are coplanar : they all lie in the same plane. This property is widely used to test whether four points in 3D are coplanar. The cyclic permutation property holds: a · (b × c) = b · (c × a) = c · (a × b). The vector triple product a × (b × c) can be expanded using the BAC-CAB rule: a × (b × c) = b(a · c) − c(a · b). This identity frequently appears in physics, particularly in the derivation of the centrifugal and Coriolis forces in rotating reference frames.

标量三重积 a · (b × c) 产生一个标量,其绝对值等于向量 a、b、c 构成的平行六面体的体积。行列式形式为 a · (b × c) = |a₁ a₂ a₃; b₁ b₂ b₃; c₁ c₂ c₃|。符号表示三个向量的取向(右手系或左手系)。标量三重积为零意味着三个向量共面:它们位于同一平面内。这一性质被广泛用于检验三维中四点是否共面。循环置换性质成立:a · (b × c) = b · (c × a) = c · (a × b)。向量三重积 a × (b × c) 可通过 BAC-CAB 法则展开:a × (b × c) = b(a · c) − c(a · b)。这一恒等式在物理学中频繁出现,特别是在旋转参考系中离心力和科里奥利力的推导中。

6. 三维空间中的直线方程 Equations of Lines in 3D

A line in 3D can be expressed in vector parametric form: r = a + λd, where a is the position vector of a known point on the line, d is a direction vector parallel to the line, and λ is a scalar parameter that varies over all real numbers. As λ runs through R, the point r traces out every point on the line. This form is compact and works for all lines in 3D, including those parallel to coordinate axes. An alternative Cartesian form expresses the line as (x − x₀)/p = (y − y₀)/q = (z − z₀)/r, where (x₀, y₀, z₀) is a point on the line and (p, q, r) are the direction ratios. If any direction component is zero, the corresponding fraction is omitted and set equal to the coordinate itself: for example, if p = 0, the line has equation x = x₀ and (y − y₀)/q = (z − z₀)/r.

三维空间中的直线可用向量参数形式表示:r = a + λd,其中 a 是直线上已知点的位置向量,d 是平行于直线的方向向量,λ 是可在所有实数上变化的标量参数。当 λ 遍历 R 时,点 r 描出直线上的每一点。这种形式紧凑且适用于三维中的所有直线,包括平行于坐标轴的直线。另一种笛卡尔形式将直线表示为 (x − x₀)/p = (y − y₀)/q = (z − z₀)/r,其中 (x₀, y₀, z₀) 是直线上一点,(p, q, r) 是方向比。若任一分量为零,对应分式省略并直接等于坐标值:例如若 p = 0,直线方程为 x = x₀ 且 (y − y₀)/q = (z − z₀)/r。

7. 三维空间中的平面方程 Equations of Planes in 3D

A plane in 3D can be defined by a point on the plane and a normal vector n perpendicular to the plane. The vector equation is r · n = a · n, where a is any known point on the plane and r = (x, y, z) is a general point. Expanding this gives the Cartesian equation ax + by + cz = d, where (a, b, c) = n is the normal vector and d = a · n. To find the angle between two planes, compute the angle between their normal vectors using the dot product: cos θ = |n₁ · n₂|/(|n₁||n₂|). The distance from a point P with position vector p to the plane r · n = d is given by |p · n − d|/|n|. This formula is one of the most frequently tested calculations in A-Level exams and requires careful attention to sign conventions when the plane equation is not in normalised form. A plane can also be defined by three non-collinear points A, B, C: the normal vector is n = AB × AC.

三维空间中的平面可由平面上一点和垂直于平面的法向量 n 来定义。向量方程为 r · n = a · n,其中 a 是平面上任一已知点,r = (x, y, z) 是一般点。展开得到笛卡尔方程 ax + by + cz = d,其中 (a, b, c) = n 是法向量,d = a · n。要求两平面之间的夹角,利用点积计算法向量间的夹角:cos θ = |n₁ · n₂|/(|n₁||n₂|)。点 P(位置向量为 p)到平面 r · n = d 的距离为 |p · n − d|/|n|。此公式是 A-Level 考试中最常考查的计算之一,当平面方程未标准化时需特别注意符号约定。平面也可由三个不共线的点 A、B、C 定义:法向量为 n = AB × AC。

8. 直线与平面的交点及空间关系 Intersections: Line-Plane and Spatial Relationships

To find the intersection of a line r = a + λd and a plane r · n = k, substitute the line equation into the plane equation: (a + λd) · n = k. This yields a linear equation in λ: a · n + λ(d · n) = k, giving λ = (k − a · n)/(d · n), provided d · n ≠ 0. If d · n = 0 and a · n ≠ k, the line is parallel to the plane and never intersects it. If d · n = 0 and a · n = k, the line lies entirely in the plane. For the intersection of two lines, solve r₁ = r₂ component-wise to obtain three equations in two unknowns λ and μ. The system is consistent only when the three equations are not contradictory. For two planes, their intersection (if not parallel) is a line whose direction vector is d = n₁ × n₂. To find the angle between a line and a plane, use sin θ = |d · n|/(|d||n|), where d is the line’s direction vector and n is the plane’s normal.

求直线 r = a + λd 与平面 r · n = k 的交点,将直线方程代入平面方程:(a + λd) · n = k。得到关于 λ 的一元一次方程:a · n + λ(d · n) = k,解得 λ = (k − a · n)/(d · n),前提是 d · n ≠ 0。若 d · n = 0 且 a · n ≠ k,直线平行于平面且永不相交。若 d · n = 0 且 a · n = k,直线完全位于平面内。求两直线的交点,令 r₁ = r₂ 按分量相等,得到两个未知量 λ 和 μ 的三个方程。只有当三个方程不矛盾时系统才有解。对于两个平面,它们的交线(若不平行)是一条直线,其方向向量为 d = n₁ × n₂。求直线与平面夹角,使用 sin θ = |d · n|/(|d||n|),其中 d 是直线方向向量,n 是平面法向量。

9. 典型考题与解题策略 Worked Examples and Exam Strategy

Example 1: Find the shortest distance from point P(2, −1, 3) to the line passing through A(1, 0, −1) with direction d = (2, 1, 2). Solution: Compute AP = (1, −1, 4). The distance is |AP × d|/|d|. AP × d = |i j k; 1 −1 4; 2 1 2| = (−2 − 4)i − (2 − 8)j + (1 + 2)k = (−6, 6, 3). |AP × d| = √(36 + 36 + 9) = √81 = 9. |d| = √(4 + 1 + 4) = 3. Distance = 9/3 = 3. Example 2: Determine whether points A(1, 2, 3), B(4, 5, 6), C(7, 8, 9), and D(10, 11, 12) are coplanar. Compute AB = (3, 3, 3), AC = (6, 6, 6), AD = (9, 9, 9). The scalar triple product AB · (AC × AD) = det[3 3 3; 6 6 6; 9 9 9] = 0 since the rows are multiples. All four points are collinear and therefore coplanar.

例题1:求点 P(2, −1, 3) 到过点 A(1, 0, −1) 且方向向量 d = (2, 1, 2) 的直线的最短距离。解:计算 AP = (1, −1, 4)。距离为 |AP × d|/|d|。AP × d = |i j k; 1 −1 4; 2 1 2| = (−2−4)i − (2−8)j + (1+2)k = (−6, 6, 3)。|AP × d| = √(36+36+9) = √81 = 9。|d| = √(4+1+4) = 3。距离 = 9/3 = 3。例题2:判断点 A(1, 2, 3)、B(4, 5, 6)、C(7, 8, 9)、D(10, 11, 12) 是否共面。计算 AB = (3, 3, 3)、AC = (6, 6, 6)、AD = (9, 9, 9)。标量三重积 AB · (AC × AD) = det[3 3 3; 6 6 6; 9 9 9] = 0,因为各行成比例。四点共线,因此共面。

10. 核心双语术语 Key Bilingual Terms

vector | 向量 · magnitude | 模长 · direction | 方向 · component | 分量 · unit vector | 单位向量 · basis vector | 基向量 · dot product / scalar product | 点积 / 标量积 · cross product / vector product | 叉积 / 向量积 · orthogonal / perpendicular | 正交 / 垂直 · scalar triple product | 标量三重积 · coplanar | 共面 · right-hand rule | 右手定则 · projection | 投影 · normal vector | 法向量 · Cartesian equation | 笛卡尔方程 · parametric form | 参数形式 · collinear | 共线 · determinant | 行列式

11. 考试技巧与常见错误 Exam Tips and Common Mistakes

When computing a cross product, always double-check the sign of the j-component: it is negative in the standard determinant expansion, a sign error that costs many marks. For plane equations, the normal vector can be scaled by any non-zero constant and still represent the same plane : always simplify your normal vector before writing the final answer. In intersection problems, write out all three component equations before solving. A common pitfall is solving only two and assuming the third is satisfied. When asked for the shortest distance from a point to a line, remember the formula |AP × d|/|d| rather than the point-to-plane distance formula. For line-line intersections in 3D, two lines typically do not intersect even if they are not parallel : they are skew lines. Only proceed with solving after confirming the lines are coplanar through the scalar triple product test. Always state the direction vector clearly when giving a line equation; a position vector alone does not define a line.

计算叉积时,务必核对 j 分量的符号:在标准行列式展开中它为负,这一符号错误会损失大量分数。对于平面方程,法向量可乘以任意非零常数仍表示同一平面:在给出最终答案前务必简化法向量。在交点问题中,先写出全部三个分量方程再求解。常见错误是只解两个并假设第三个自动成立。求点到直线的最短距离时,记住公式 |AP × d|/|d| 而非点到平面距离公式。对于三维中的线线交点,两条直线即使不平行也通常不相交:它们是异面直线。只有通过标量三重积检验确认两线共面后才可继续求解。给出直线方程时务必明确写出方向向量;仅凭位置向量不能定义一条直线。

Comments

屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from aleveler.com

Subscribe now to keep reading and get access to the full archive.

Continue reading

Exit mobile version