13.3 Spatial Coordinates and Spatial Vector Operations
Key Takeaways
- A right-handed spatial Cartesian coordinate system $O-xyz$ represents any point $P$ as an ordered triple $(x, y, z)$ and any vector $\boldsymbol{a}$ as $(x_1, y_1, z_1)$ with basis vectors $\boldsymbol{i}, \boldsymbol{j}, \boldsymbol{k}$.
- Spatial vector algebraic operations (addition, subtraction, scalar multiplication, dot product) obey component-wise rules: $\boldsymbol{a} \cdot \boldsymbol{b} = x_1 x_2 + y_1 y_2 + z_1 z_2$, $|\boldsymbol{a}| = \sqrt{x_1^2 + y_1^2 + z_1^2}$, and $\cos\theta = \frac{\boldsymbol{a} \cdot \boldsymbol{b}}{|\boldsymbol{a}||\boldsymbol{b}|}$.
- Two spatial vectors are parallel if $\boldsymbol{a} = \lambda \boldsymbol{b}$ (proportional components) and perpendicular if $\boldsymbol{a} \cdot \boldsymbol{b} = 0$.
- A normal vector $\boldsymbol{n} = (x, y, z)$ of a plane $\alpha$ is perpendicular to every vector lying in $\alpha$; it is constructed by solving the system $\begin{cases} \boldsymbol{n} \cdot \boldsymbol{u} = 0 \\ \boldsymbol{n} \cdot \boldsymbol{v} = 0 \end{cases}$ for two non-collinear vectors $\boldsymbol{u}, \boldsymbol{v} \subset \alpha$.
- Establishing an optimal coordinate origin $O$ (typically at a right-angled vertex or projection of a vertex) simplifies geometric calculations and eliminates algebraic complexity.
13.3 Spatial Coordinates and Spatial Vector Operations
Spatial vectors convert geometric problems into algebraic computations. Introduced in the modern Gaokao syllabus, the spatial vector method provides an algorithmic, reliable approach to solving complex 3D geometry questions without relying on difficult synthetic auxiliary constructions.
1. Spatial Cartesian Coordinate System
Fix an origin point $O$ in space and three mutually perpendicular directed axes: the x-axis (abscissa), y-axis (ordinate), and z-axis (applicate), forming a right-handed Cartesian coordinate system $O-xyz$.
- Basis Vectors: Let $\boldsymbol{i}, \boldsymbol{j}, \boldsymbol{k}$ be unit vectors along the positive x, y, and z axes, respectively. Then $|\boldsymbol{i}| = |\boldsymbol{j}| = |\boldsymbol{k}| = 1$ and $\boldsymbol{i} \cdot \boldsymbol{j} = \boldsymbol{j} \cdot \boldsymbol{k} = \boldsymbol{k} \cdot \boldsymbol{i} = 0$.
- Point and Position Vector: For any point $P(x, y, z)$ in space, its position vector is:
- Vector Between Two Points: Given $P_1(x_1, y_1, z_1)$ and $P_2(x_2, y_2, z_2)$:
- Distance Formula:
- Midpoint Formula: The midpoint $M$ of segment $P_1P_2$ has coordinates:
2. Component Algebra of Spatial Vectors
Let $\boldsymbol{a} = (x_1, y_1, z_1)$ and $\boldsymbol{b} = (x_2, y_2, z_2)$ be two vectors in space, and $\lambda \in \mathbb{R}$:
- Vector Addition & Subtraction:
- Scalar Multiplication:
- Dot Product (Scalar Product):
- Vector Magnitude:
- Collinear (Parallel) Condition:
- Perpendicular Condition:
3. Direction Vectors and Normal Vectors
Direction Vector of a Line (直线的方向向量)
Any non-zero vector $\boldsymbol{v}$ parallel to a straight line $l$ is called a direction vector of $l$. If line $l$ passes through point $A(x_0, y_0, z_0)$, any point $P(x, y, z)$ on $l$ satisfies $\vec{AP} = t \boldsymbol{v}$ for $t \in \mathbb{R}$.
Normal Vector of a Plane (平面的法向量)
Any non-zero vector $\boldsymbol{n}$ perpendicular to a plane $\alpha$ is called a normal vector of $\alpha$. That is, for every vector $\vec{AB}$ in plane $\alpha$:
Standard System of Equations Algorithm for Normal Vector $\boldsymbol{n}$:
- Choose two non-collinear vectors $\boldsymbol{u} = (x_u, y_u, z_u)$ and $\boldsymbol{w} = (x_w, y_w, z_w)$ lying in plane $\alpha$.
- Set $\boldsymbol{n} = (x, y, z)$.
- Set up the homogeneous linear system:
- Assign a convenient non-zero value to one free variable (e.g., $z = 1$ or $x = 1$) and solve for the remaining variables to get a simple integer-component normal vector $\boldsymbol{n}$.
4. Classic Gaokao Worked Example
Problem
In a right quadrangular pyramid $P-ABCD$, the base $ABCD$ is a square with side length $2$. The altitude of the pyramid is $PO = 2$, where $O$ is the center of the square base $ABCD$. Point $M$ is the midpoint of lateral edge $PC$.
- Establish an appropriate spatial coordinate frame.
- Calculate the coordinates of all vertices and point $M$.
- Compute a normal vector $\boldsymbol{n}$ for plane $MBD$.
Solution
-
Establish Coordinate Frame: Since base $ABCD$ is a square centered at $O$, and $PO \perp$ base $ABCD$, take center $O$ as the coordinate origin $(0,0,0)$.
- Let $x$-axis be parallel to $\vec{AB}$ (or along $OK$ where $K$ is midpoint of $BC$).
- Let $y$-axis be along $OM$ (or parallel to $\vec{AD}$).
- Let $z$-axis be along directed line segment $OP$.
-
Vertex Coordinates:
- Base vertices: $A(-1, -1, 0)$, $B(1, -1, 0)$, $C(1, 1, 0)$, $D(-1, 1, 0)$.
- Apex: $P(0, 0, 2)$.
- Midpoint $M$ of $PC$:
-
Finding Normal Vector of Plane $MBD$:
- Identify two vectors in plane $MBD$: $\vec{BD}$ and $\vec{BM}$.
- Let $\boldsymbol{n} = (x, y, z)$ be the normal vector of plane $MBD$. Set up equations:
- From $-2x + 2y = 0$, we get $x = y$.
- Substitute $x = y$ into second equation: $-\frac{1}{2}x + \frac{3}{2}x + z = 0 \implies x + z = 0 \implies z = -x$.
- Assign $x = 1$. Then $y = 1$ and $z = -1$.
- Conclusion: A normal vector for plane $MBD$ is $\boldsymbol{n} = (1, 1, -1)$.
Given two spatial vectors $\boldsymbol{a} = (1, -2, 2)$ and $\boldsymbol{b} = (-2, 1, 2)$, what is the value of their dot product $\boldsymbol{a} \cdot \boldsymbol{b}$ and the magnitude $|\boldsymbol{a}|$?
If plane $\alpha$ contains vectors $\boldsymbol{u} = (1, 0, 1)$ and $\boldsymbol{v} = (0, 1, -1)$, which of the following vectors is a NORMAL VECTOR of plane $\alpha$?
If vector $\boldsymbol{a} = (2, -1, k)$ is parallel to vector $\boldsymbol{b} = (-4, 2, 6)$, what is the value of the parameter $k$?