📚 Matrix Key Concepts for CIE A-Level Mathematics | CIE A-Level 数学:矩阵考点精讲
Matrices are a cornerstone of linear algebra and play a vital role in CIE A-Level Mathematics, particularly in the Further Mathematics pathway. This article distills the core concepts, from basic operations to geometric transformations, equipping you with exam-ready techniques and clear explanations.
矩阵是线性代数的基石,在 CIE A-Level 数学(尤其是进阶数学)中扮演关键角色。本文提炼从基本运算到几何变换的核心概念,为你提供考试必备的技巧与清晰讲解。
1. Matrix Notation and Terminology | 矩阵符号与术语
A matrix is a rectangular array of numbers, symbols, or expressions arranged in m rows and n columns. The order (or dimension) of a matrix is given as m × n, where m is the number of rows and n is the number of columns.
矩阵是一个矩形的数组,由数字、符号或表达式按 m 行 n 列排列而成。矩阵的阶(维度)记为 m × n,其中 m 是行数,n 是列数。
Element aij is located in the i‑th row and j‑th column. A matrix with only one row is called a row vector, and a matrix with only one column is a column vector.
元素 aij 位于第 i 行第 j 列。只有一行的矩阵称为行向量,只有一列的矩阵称为列向量。
We usually denote matrices by capital letters, e.g., A, B, M. Two matrices are equal if they have the same order and corresponding elements are identical.
我们通常用大写字母表示矩阵,例如 A, B, M。如果两个矩阵阶数相同且对应元素均相等,则这两个矩阵相等。
2. Matrix Addition and Scalar Multiplication | 矩阵加法与标量乘法
Matrices of the same order can be added by adding corresponding elements: if A = (aij) and B = (bij), then A + B = (aij + bij). Addition is commutative and associative.
同阶矩阵可通过对相应元素相加来实现加法:若 A = (aij),B = (bij),则 A + B = (aij + bij)。加法满足交换律和结合律。
Scalar multiplication involves multiplying every element of a matrix by a constant k: kA = (k aij). This operation distributes over matrix addition and addition of scalars.
标量乘法是将矩阵的每个元素乘以常数 k:kA = (k aij)。该运算对矩阵加法及标量加法满足分配律。
Subtraction is defined similarly: A − B = A + (−1)B. This is only possible for matrices of the same order.
减法类似定义:A − B = A + (−1)B。只有同阶矩阵才能相减。
3. Matrix Multiplication | 矩阵乘法
The product AB is defined only when the number of columns of A equals the number of rows of B. If A is of order m × n and B is n × p, then AB is m × p.
只有当 A 的列数等于 B 的行数时,乘积 AB 才有定义。若 A 为 m × n 阶,B 为 n × p 阶,则 AB 为 m × p 阶。
The element in the i‑th row and j‑th column of AB is the sum of products of corresponding entries from the i‑th row of A and j‑th column of B: (AB)ij = Σ aik bkj.
AB 中第 i 行第 j 列的元素是 A 的第 i 行与 B 的第 j 列对应元素乘积之和:(AB)ij = Σ aik bkj。
Matrix multiplication is not commutative in general; AB ≠ BA. However, it is associative: A(BC) = (AB)C, and distributive over addition: A(B + C) = AB + AC.
矩阵乘法一般不满足交换律,即 AB ≠ BA。但它满足结合律:A(BC) = (AB)C,以及对加法的分配律:A(B + C) = AB + AC。
An important case is multiplying a 2×2 matrix by a 2×1 column vector, which frequently appears in transformations.
一个重要的情况是 2×2 矩阵乘以 2×1 列向量,这在变换中经常出现。
4. Identity and Zero Matrices | 单位矩阵与零矩阵
The zero matrix, denoted by 0, has all entries equal to 0. It acts as the additive identity: A + 0 = A for any matrix A of the same order.
零矩阵记作 0,所有元素均为 0。它是加法单位元:对任意同阶矩阵 A,有 A + 0 = A。
The identity matrix I (or In for n × n) is a square matrix with 1s on the main diagonal and 0s elsewhere. It is the multiplicative identity: AI = IA = A for any square matrix A of the same size.
单位矩阵 I(或 n × n 的 In)是主对角线元素为 1、其余元素为 0 的方阵。它是乘法单位元:对任意同阶方阵 A,有 AI = IA = A。
For 2×2 and 3×3 matrices, the identity matrices are:
对于 2×2 和 3×3 矩阵,单位矩阵分别为:
| [ |
|
] |
and
| [ |
|
] |
5. Determinant of a Matrix | 矩阵的行列式
The determinant is a scalar value that can be computed from a square matrix. It plays a central role in determining invertibility and in solving linear systems.
行列式是由方阵计算出的一个标量值。它在判断可逆性以及求解线性方程组中起着核心作用。
For a 2×2 matrix A =
| [ |
|
] |
, the determinant is det(A) = ad − bc.
对于 2×2 矩阵 A =
| [ |
|
] |
,行列式为 det(A) = ad − bc。
For a 3×3 matrix, the determinant can be computed by expansion along any row or column using minors and cofactors. The sign pattern for cofactors is (+ − +; − + −; + − +).
对于 3×3 矩阵,可以沿任一行或列通过余子式和代数余子式展开来计算行列式。代数余子式的符号模式为 (+ − +; − + −; + − +)。
A matrix is singular (non‑invertible) if its determinant is zero; it is non‑singular if det(A) ≠ 0.
若行列式为零,则矩阵是奇异的(不可逆);若 det(A) ≠ 0,则矩阵非奇异。
The determinant of a product satisfies det(AB) = det(A) det(B). Also, det(AT) = det(A).
乘积的行列式满足 det(AB) = det(A) det(B)。同时,det(AT) = det(A)。
6. Inverse of a 2×2 Matrix | 2×2 矩阵的逆
If A =
| [ |
|
] |
and det(A) ≠ 0, then the inverse matrix A⁻¹ is given by A⁻¹ = (1/det(A))
| [ |
|
] |
.
若 A =
| [ |
|
] |
且 det(A) ≠ 0,则逆矩阵 A⁻¹ = (1/det(A))
| [ |
|
] |
。
This formula can be verified by checking that AA⁻¹ = I. The inverse exists only for non‑singular matrices.
可以通过验证 AA⁻¹ = I 来检验该公式。只有非奇异矩阵才存在逆矩阵。
The inverse can be used to solve matrix equations efficiently: if AX = B, then X = A⁻¹B (provided A is square and invertible).
逆矩阵可用来高效求解矩阵方程:若 AX = B,则 X = A⁻¹B(要求 A 为方阵且可逆)。
7. Inverse of a 3×3 Matrix | 3×3 矩阵的逆
For a non‑singular 3×3 matrix A, the inverse can be found using the formula A⁻¹ = (1/det(A)) adj(A), where adj(A) is the adjugate (transpose of the cofactor matrix).
对于非奇异的 3×3 矩阵 A,可使用公式 A⁻¹ = (1/det(A)) adj(A) 求逆,其中 adj(A) 是伴随矩阵(余子式矩阵的转置)。
To build the cofactor matrix, replace each element aij with its cofactor Cij = (−1)i+j Mij, where Mij is the minor obtained by deleting the i‑th row and j‑th column.
构造余子式矩阵时,将每个元素 aij 替换为其代数余子式 Cij = (−1)i+j Mij,其中 Mij 是删除第 i 行和第 j 列后得到的余子式。
Alternatively, row operations (Gauss‑Jordan elimination) can be applied to the augmented matrix [A|I] until [I|A⁻¹] is obtained.
另一种方法是利用行变换(高斯‑约旦消元法),对增广矩阵 [A|I] 进行操作,直至得到 [I|A⁻¹]。
In exams, the adjugate method is standard for 3×3, but row reduction is particularly useful when solving systems or when the determinant is straightforward.
在考试中,伴随矩阵法是 3×3 矩阵求逆的标准方法,但行约简在求解方程组或行列式简单时同样非常实用。
8. Solving Systems of Linear Equations | 解线性方程组
A system of n linear equations in n unknowns can be written in matrix form as Ax = b, where A is the coefficient matrix, x is the column vector of variables, and b is the constant vector.
含 n 个未知数的 n 个线性方程组可写为矩阵形式 Ax = b,其中 A 是系数矩阵,x 是变量列向量,b 是常数项向量。
If A is invertible, the unique solution is x = A⁻¹b. This requires det(A) ≠ 0. When det(A) = 0, the system has either no solution or infinitely many solutions.
若 A 可逆,唯一解为 x = A⁻¹b,这要求 det(A) ≠ 0。当 det(A) = 0 时,方程组无解或有无穷多解。
To distinguish these cases, use Gaussian elimination to row‑reduce the augmented matrix [A|b] and compare the ranks of A and [A|b].
为区分这两种情况,可使用高斯消元法对增广矩阵 [A|b] 进行行化简,并比较 A 与 [A|b] 的秩。
Row operations must be applied consistently: interchange rows, multiply a row by a non‑zero scalar, and add a multiple of one row to another. These do not change the solution set.
行变换必须一致地应用:交换行、将某行乘以非零标量、将一行的倍数加到另一行。这些操作不改变解集。
9. Matrix Transformations: Basic Types | 矩阵变换:基本类型
A 2×2 matrix M can represent a linear transformation of points (x, y) in the plane:
| [ |
|
] |
= M
| [ |
|
] |
. Key transformation matrices include:
一个 2×2 矩阵 M 可以表示平面上点 (x, y) 的线性变换:
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导