Matrix Exam Essentials (IB/AQA) | 矩阵考点精讲

📚 Matrix Exam Essentials (IB/AQA) | 矩阵考点精讲

Matrices are a fundamental topic in both IB and AQA Mathematics, linking pure algebra with geometry, transformations and the elegant solution of linear systems. This revision guide distils every core matrix concept you must master — from basic operations to determinants, inverses and their application in solving equations — into clear, exam-ready explanations and worked examples.

矩阵是 IB 和 AQA 数学中的核心主题,它将纯代数与几何、变换以及线性方程组的优雅解法联系在一起。这份考点精讲浓缩了你必须掌握的每一个核心矩阵概念——从基本运算到行列式、逆矩阵及其在解方程中的应用——用清晰、贴合考试的讲解和例题帮你备考。


1. Matrix Definition and Order | 矩阵定义与阶数

A matrix is a rectangular array of numbers, called elements, arranged in m rows and n columns. The order of a matrix is written as m × n. For example, a matrix with 2 rows and 3 columns has order 2 × 3. A single number can be thought of as a 1 × 1 matrix, while a row vector is a 1 × n matrix and a column vector is an m × 1 matrix.

矩阵是由数字(称为元素)按 mn 列排列而成的矩形数组。矩阵的阶数写作 m × n。例如,一个具有2行3列的矩阵的阶数为2 × 3。一个单独的数可以视为1 × 1矩阵,而行向量是1 × n矩阵,列向量是m × 1矩阵。

We denote matrices by bold capital letters, such as A, and elements by the corresponding lowercase letter with subscripts, e.g. aᵢⱼ refers to the element in the i-th row and j-th column. The first subscript gives the row number, the second the column number.

矩阵通常用粗体大写字母表示,如 A,其元素用对应的小写字母加双下标表示,例如 aᵢⱼ 表示位于第 i 行第 j 列的元素。第一个下标表示行号,第二个下标表示列号。


2. Addition, Subtraction and Scalar Multiplication | 加法、减法与标量乘法

Two matrices can be added or subtracted only when they have the same order. You simply add or subtract the corresponding elements. If A = [aᵢⱼ] and B = [bᵢⱼ] are both m × n matrices, then A ± B = [aᵢⱼ ± bᵢⱼ].

只有当两个矩阵阶数相同时,它们才能相加或相减。只需将对应位置的元素相加或相减即可。若 m × n 矩阵 A = [aᵢⱼ] 和 B = [bᵢⱼ] 阶数相同,则 A ± B = [aᵢⱼ ± bᵢⱼ]。

Scalar multiplication means multiplying every element of a matrix by a fixed real number k: kA = [k × aᵢⱼ]. This is used constantly when applying transformations and in matrix algebra.

标量乘法是指用固定的实数 k 乘以矩阵的每一个元素:kA = [k × aᵢⱼ]。在处理变换和矩阵代数时,标量乘法使用非常频繁。


3. Matrix Multiplication | 矩阵乘法

Matrix multiplication AB is defined only when the number of columns in A equals the number of rows in B. If A is m × n and B is n × p, the product AB is an m × p matrix. The element in the i-th row and j-th column of AB is obtained by multiplying the elements of the i-th row of A by the corresponding elements of the j-th column of B and summing the results: cᵢⱼ = aᵢ₁b₁ⱼ + aᵢ₂b₂ⱼ + … + aᵢₙbₙⱼ.

矩阵乘法 AB 仅在 A 的列数等于 B 的行数时才有定义。若 A 为 m × n 矩阵,B 为 n × p 矩阵,则乘积 AB 为 m × p 矩阵。AB 中第 i 行第 j 列的元素等于 A 的第 i 行各元素与 B 的第 j 列对应元素乘积之和:cᵢⱼ = aᵢ₁b₁ⱼ + aᵢ₂b₂ⱼ + … + aᵢₙbₙⱼ。

It is crucial to remember that matrix multiplication is not commutative: in general, ABBA. However, it is associative: (AB)C = A(BC), and distributive over addition: A(B+C) = AB + AC. The identity matrix I plays the role of 1: AI = IA = A for any square matrix A of the same size.

必须牢记矩阵乘法不满足交换律:一般来说 ABBA。但它满足结合律:(AB)C = A(BC),以及对加法的分配律:A(B+C) = AB + AC。单位矩阵 I 相当于数字 1:对任意同阶方阵 A,有 AI = IA = A


4. Special Matrices | 特殊矩阵

Several special matrices appear repeatedly in exam problems. The zero matrix (all elements zero) is denoted by 0. The identity matrix I (or Iₙ) is a square matrix with 1s on the main diagonal and zeros elsewhere. A diagonal matrix has non-zero entries only on the main diagonal. A symmetric matrix satisfies Aᵀ = A, meaning aᵢⱼ = aⱼᵢ for all i, j. A square matrix has equal number of rows and columns; many operations such as determinant and inverse apply only to square matrices.

几种特殊矩阵在试题中反复出现。零矩阵(所有元素为零)记作 0单位矩阵 I(或 Iₙ)是主对角线元素全为1、其他元素全为0的方阵。对角矩阵仅在主对角线上有非零元素。对称矩阵满足 Aᵀ = A,即对所有 i, j,有 aᵢⱼ = aⱼᵢ。方阵的行数与列数相等;许多运算,如行列式和逆阵,只对方阵有意义。


5. Transpose of a Matrix | 矩阵的转置

The transpose of a matrix A, denoted by Aᵀ, is obtained by swapping the rows and columns: the first row of A becomes the first column of Aᵀ, and so forth. If A is m × n, then Aᵀ is n × m. The following properties are essential: (Aᵀ)ᵀ = A, (A + B)ᵀ = Aᵀ + Bᵀ, and (AB)ᵀ = BAᵀ.

矩阵 A 的转置记作 Aᵀ,是通过交换行与列得到的:A 的第一行变成 Aᵀ 的第一列,依此类推。若 A 为 m × n 矩阵,则 Aᵀ 为 n × m 矩阵。以下性质非常关键:(Aᵀ)ᵀ = A,( A + B )ᵀ = Aᵀ + Bᵀ,以及 (AB)ᵀ = BAᵀ。

The transpose is heavily used when working with symmetric matrices and when interpreting row and column vectors. In geometry, the transpose corresponds to reflecting the matrix of a linear transformation across the main diagonal.

在处理对称矩阵以及理解行、列向量时,转置使用频繁。在几何中,转置相当于对线性变换的矩阵作关于主对角线的反射。


6. Determinant of a 2×2 and 3×3 Matrix | 2×2 与 3×3 矩阵的行列式

The determinant is a scalar value that can be computed from a square matrix. It gives crucial information about the matrix: whether it is invertible, the scale factor of area or volume under a transformation, and it appears in Cramer’s rule. For a 2×2 matrix A = [a b; c d], the determinant is det(A) = ad − bc.

行列式是可以从方阵计算出的一个标量值。它提供了关于矩阵的重要信息:矩阵是否可逆、变换中的面积或体积缩放因子,并在克拉默法则中出现。对于 2×2 矩阵 A = [a b; c d],行列式为 det(A) = ad − bc。

det([a b; c d]) = ad − bc

For a 3×3 matrix, use the expansion by the first row. If A = [a b c; d e f; g h i], then det(A) = a(ei − fh) − b(di − fg) + c(dh − eg). Remember the sign pattern: +, −, + for the first row.

对于 3×3 矩阵,使用按第一行展开的方法。若 A = [a b c; d e f; g h i],则 det(A) = a(ei − fh) − b(di − fg) + c(dh − eg)。牢记首行元素的符号规律:+, −, +。

det([a b c; d e f; g h i]) = a(ei − fh) − b(di − fg) + c(dh − eg)

A determinant of zero indicates a singular matrix; a non-zero determinant indicates a unique inverse exists. In transformation geometry, the absolute value of the determinant gives the area/volume scale factor.

行列式为零表示矩阵奇异;非零行列式表示存在唯一的逆矩阵。在变换几何中,行列式的绝对值给出面积/体积的缩放因子。


7. Inverse of a 2×2 Matrix | 2×2 矩阵的逆

A square matrix A has an inverse A⁻¹ if and only if det(A) ≠ 0. The inverse satisfies AA⁻¹ = A⁻¹A = I. For a 2×2 matrix A = [a b; c d], the inverse is given by a simple formula: A⁻¹ = 1/(ad − bc) × [d −b; −c a].

当且仅当 det(A) ≠ 0 时,方阵 A 存在逆阵 A⁻¹。逆阵满足 AA⁻¹ = A⁻¹A = I。对于 2×2 矩阵 A = [a b; c d],逆阵由一个简单公式给出:A⁻¹ = 1/(ad − bc) × [d −b; −c a]。

A⁻¹ = 1/(ad − bc) [d −b; −c a]

The quantity ad − bc is the determinant, and the matrix [d −b; −c a] is called the adjugate or the signed cofactor matrix after swapping positions of a and d and changing signs of b and c. Always check your answer by verifying that AA⁻¹ = I.

分母 ad − bc 就是行列式,而矩阵 [d −b; −c a] 是交换 a、d 的位置并改变 b、c 的符号后得到的伴随矩阵。最后务必通过验证 AA⁻¹ = I 来检查答案。


8. Solving Linear Equations using Inverse Matrix | 利用逆矩阵解线性方程组

A system of linear equations can be written compactly in matrix form as AX = B, where A is the coefficient matrix, X is the column vector of unknowns, and B is the constants column vector. If A is invertible, we can solve by multiplying both sides on the left by A⁻¹:

线性方程组可以用矩阵形式紧凑地表示为 AX = B,其中 A 是系数矩阵,X 是未知数列向量,B 是常数列向量。若 A 可逆,双方左乘 A⁻¹ 即可求解:

X = A⁻¹B

For instance, the system 2x + 3y = 5, 4x + y = 6 becomes [2 3; 4 1][x; y] = [5; 6], so [x; y] = [2 3; 4 1]⁻¹ [5; 6]. Compute the inverse and multiply to get the unique solution. If det(A) = 0, the system either has no solution or infinitely many solutions (singular).

例如,方程组 2x + 3y = 5,4x + y = 6 可写成 [2 3; 4 1][x; y] = [5; 6],所以 [x; y] = [2 3; 4 1]⁻¹ [5; 6]。计算逆矩阵并相乘就得到唯一解。若 det(A) = 0,方程组要么无解,要么有无穷多解(奇异情况)。

This method is highly exam-relevant; you must be able to express the system in matrix form, find the inverse if it exists, and interpret the determinant to determine the nature of solutions.

这个方法在考试中出现率很高;你必须能够将方程组表示为矩阵形式,在存在逆矩阵时求得它,并通过行列式判断解的情况。


9. Matrix Transformations in Geometry | 几何中的矩阵变换

A 2×2 matrix can represent a linear transformation of the plane. Multiplying the matrix by a position vector yields a new position. Common transformations include:

2×2 矩阵可以表示平面上的线性变换。用矩阵乘以位置向量就得到新位置。常见的变换包括:

  • Rotation about the origin through angle θ: [cosθ −sinθ; sinθ cosθ]

    绕原点旋转 θ 角:[cosθ −sinθ; sinθ cosθ]

  • Reflection in the x-axis: [1 0; 0 −1]; in the y-axis: [−1 0; 0 1]; in the line y=x: [0 1; 1 0]

    关于 x 轴反射:[1 0; 0 −1];关于 y 轴:[−1 0; 0 1];关于直线 y=x:[0 1; 1 0]

  • Enlargement (scale factor k): [k 0; 0 k]

    放大(缩放因子 k):[k 0; 0 k]

  • Stretch parallel to an axis, e.g., [k 0; 0 1] (x-stretch)

    平行于坐标轴的伸缩,例如 [k 0; 0 1](沿 x 轴拉伸)

The determinant of the transformation matrix gives the area scale factor. For pure rotations, det = 1; for reflections, det = −1. Understanding the geometric effect of a matrix is a standard IB/AQA exam requirement.

变换矩阵的行列式给出面积缩放因子。对于纯旋转,det = 1;对于反射,det = −1。理解矩阵的几何效果是 IB/AQA 考试的基本要求。


10. Singular and Non-singular Matrices | 奇异矩阵与非奇异矩阵

A square matrix is called singular if its determinant is zero, and non-singular (or invertible) if det ≠ 0. Singular matrices cannot be inverted and correspond to degenerate transformations that collapse the plane into a line or point (area factor zero). Non-singular matrices have a unique inverse and preserve the dimension of the space under transformation.

若方阵的行列式为零,则称该矩阵为奇异矩阵;若 det ≠ 0,则称其为非奇异矩阵(或可逆矩阵)。奇异矩阵没有逆矩阵,对应退化的变换,会将平面压缩成一条线或一个点(面积因子为零)。非奇异矩阵有唯一的逆矩阵,且在变换下保持空间的维数。

In the context of simultaneous equations, a singular coefficient matrix means the equations are either inconsistent (no solution) or dependent (infinitely many solutions). Always check the determinant first to decide whether a unique solution exists.

在联立方程组的语境中,系数矩阵奇异意味着方程要么矛盾(无解),要么相依(无穷多解)。解题时一定先检查行列式,判断是否存在唯一解。


Published by TutorHao | Mathematics Revision Series | aleveler.com

更多咨询请联系16621398022(同微信)

Comments

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

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