📚 IGCSE WJEC Maths: Matrices Revision Guide | IGCSE WJEC 数学:矩阵 考点精讲
Matrices are a powerful tool in mathematics, used to organise data, solve systems of equations, and describe geometric transformations. In the IGCSE WJEC specification, understanding matrix operations, determinants, inverses, and applications is essential for achieving top marks. This revision guide covers all key topics with clear explanations and examples.
矩阵是数学中一种强大的工具,用于整理数据、求解方程组以及描述几何变换。在 IGCSE WJEC 考试中,掌握矩阵运算、行列式、逆矩阵及其应用是取得高分的关键。这本考点精讲通过清晰的解释和示例,覆盖了所有核心主题。
1. What is a Matrix? | 什么是矩阵?
A matrix is a rectangular array of numbers, called entries or elements, arranged in rows and columns. Matrices are usually denoted by capital letters such as A, B, or M. The numbers inside can be positive, negative, fractions, or even algebraic expressions.
矩阵是按行和列排列的矩形数字阵列,其中的数字称为元素。矩阵通常用大写字母表示,如 A、B 或 M。矩阵内的元素可以是正数、负数、分数,甚至是代数表达式。
For example, a matrix with 2 rows and 3 columns looks like this:
例如,一个 2 行 3 列的矩阵可以表示为:
[
| 4 | -1 | 0 |
| 2 | 5 | -3 |
]
We write this matrix as A = [4 -1 0; 2 5 -3] where the semicolon separates the rows. Matrices allow us to handle large sets of numbers efficiently, which is why they appear in many areas of mathematics and science.
我们可以将此矩阵记作 A = [4 -1 0; 2 5 -3],其中分号分隔不同行。矩阵使我们能够高效地处理大量数字,因此它们在数学和科学的许多领域都有出现。
2. Order and Elements of a Matrix | 矩阵的阶数与元素
The order of a matrix is described as ‘rows × columns’. A matrix with m rows and n columns is called an m × n matrix (read as ‘m by n’). For example, the matrix above has order 2 × 3. If the number of rows equals the number of columns, it is a square matrix.
矩阵的阶数用“行数 × 列数”来描述。一个具有 m 行 n 列的矩阵称为 m × n 矩阵。例如,上面的矩阵就是 2 × 3 矩阵。如果行数与列数相等,则称为方阵。
Each entry is referred to by its position: the element in the ith row and jth column is often written as aij. In a 2 × 2 matrix A = [a₁₁ a₁₂; a₂₁ a₂₂], the element a₂₁ is in the second row and first column.
每个元素根据其位置命名:第 i 行第 j 列的元素通常写作 aij。在一个 2 × 2 矩阵 A = [a₁₁ a₁₂; a₂₁ a₂₂] 中,元素 a₂₁ 位于第二行第一列。
When comparing matrices, we say two matrices are equal only if they have the same order and all corresponding elements are equal.
比较矩阵时,只有当两个矩阵阶数相同且所有对应元素相等时,才称它们相等。
3. Special Matrices: Zero and Identity | 特殊矩阵:零矩阵与单位矩阵
The zero matrix, denoted by O, has all entries equal to 0. It acts much like the number 0 in ordinary arithmetic, as adding it to any matrix of the same order leaves that matrix unchanged.
零矩阵记为 O,所有元素均为 0。它的作用类似于普通算术中的数字 0,因为将它加到任何同阶矩阵上都不会改变原矩阵。
The identity matrix, denoted by I, is a square matrix with ones on the main diagonal (top-left to bottom-right) and zeros elsewhere. For a 2 × 2 case, I = [1 0; 0 1]. Multiplying any matrix by the identity matrix (of compatible order) leaves it unchanged, similar to multiplying by 1.
单位矩阵 I 是一个方阵,其主对角线(左上到右下)上的元素为 1,其余元素为 0。对于 2 × 2 的情况,I = [1 0; 0 1]。任何矩阵乘以适当阶数的单位矩阵都保持不变,类似于乘以 1。
These special matrices are fundamental in matrix algebra and will be used when we discuss inverse matrices.
这些特殊矩阵在矩阵代数中至关重要,我们讨论逆矩阵时将会用到它们。
4. Adding and Subtracting Matrices | 矩阵的加法与减法
You can only add or subtract matrices if they have exactly the same order. To add, simply add the corresponding elements. Subtraction works in the same way, subtracting element by element.
只有当两个矩阵阶数完全相同时,才能进行加法或减法运算。加法只需将对应位置的元素相加。减法同理,逐个元素相减。
For example, if P = [2 5; -1 3] and Q = [4 -2; 0 6], then P + Q = [2+4 5+(-2); -1+0 3+6] = [6 3; -1 9].
例如,若 P = [2 5; -1 3],Q = [4 -2; 0 6],则 P + Q = [2+4 5+(-2); -1+0 3+6] = [6 3; -1 9]。
Matrices obey the commutative and associative laws for addition: A + B = B + A, and (A + B) + C = A + (B + C). These properties make matrix addition straightforward once the orders match.
矩阵加法满足交换律和结合律:A + B = B + A,(A + B) + C = A + (B + C)。只要阶数匹配,这些性质使矩阵加法变得非常简单。
5. Scalar Multiplication | 标量乘法
Scalar multiplication involves multiplying every entry of a matrix by a single number (a scalar). If k is a scalar and A is a matrix, then kA is obtained by multiplying each element of A by k.
标量乘法是指将矩阵中的每一个元素都乘以同一个数(标量)。如果 k 是标量,A 是矩阵,则 kA 就是将 A 的每个元素乘以 k。
For instance, if A = [3 -1; 0 2], then 4A = [12 -4; 0 8]. Scalar multiplication can also be combined with addition: 2A + 3B is perfectly valid when A and B have the same order.
例如,若 A = [3 -1; 0 2],则 4A = [12 -4; 0 8]。标量乘法可以与加法结合使用:当 A 和 B 阶数相同时,2A + 3B 是完全可以的。
This operation is used when scaling geometric figures or combining matrix equations, and it respects distributive laws: k(A + B) = kA + kB.
这个运算在缩放几何图形或组合矩阵方程时非常实用,并且满足分配律:k(A + B) = kA + kB。
6. Matrix Multiplication | 矩阵乘法
Multiplying two matrices is possible only when the number of columns in the first matrix equals the number of rows in the second. If A is an m × n matrix and B is an n × p matrix, then the product AB is an m × p matrix. The element in the ith row and jth column of AB is found by multiplying the elements of the ith row of A with the corresponding elements of the jth column of B and summing the products.
两个矩阵相乘的前提是第一个矩阵的列数等于第二个矩阵的行数。若 A 是 m × n 矩阵,B 是 n × p 矩阵,则乘积 AB 是 m × p 矩阵。AB 中第 i 行第 j 列的元素,是将 A 的第 i 行各元素与 B 的第 j 列对应元素相乘再求和得到的。
For 2 × 2 matrices, let A = [a b; c d] and B = [e f; g h]. Then AB = [ae+bg af+bh; ce+dg cf+dh]. Notice that BA is generally not equal to AB; matrix multiplication is not commutative.
对于 2 × 2 矩阵,设 A = [a b; c d],B = [e f; g h],则 AB = [ae+bg af+bh; ce+dg cf+dh]。注意,通常 BA 不等于 AB;矩阵乘法不满足交换律。
It is crucial to pay close attention to the order of multiplication. Always check that the inner dimensions match (n = n) before performing the operation.
进行乘法时,务必注意相乘顺序,并且始终先检查内层维数是否匹配(n = n)再进行运算。
7. Determinant of a 2×2 Matrix | 2×2 矩阵的行列式
The determinant is a special number that can be calculated from a square matrix. For a 2 × 2 matrix M = [a b; c d], the determinant, written as det(M) or |M|, is given by the formula:
行列式是可以从方阵中计算出来的一个特殊数值。对于 2 × 2 矩阵 M = [a b; c d],行列式记作 det(M) 或 |M|,计算公式为:
det(M) = ad − bc
For example, if M = [3 2; 1 5], then det(M) = (3 × 5) − (2 × 1) = 15 − 2 = 13.
例如,若 M = [3 2; 1 5],则 det(M) = (3 × 5) − (2 × 1) = 15 − 2 = 13。
The determinant tells us important information: if det(M) = 0, the matrix is singular and does not have an inverse. If det(M) ≠ 0, the matrix is non-singular and an inverse exists.
行列式提供了重要的信息:如果 det(M) = 0,该矩阵是奇异的,不存在逆矩阵;如果 det(M) ≠ 0,矩阵是非奇异的,逆矩阵存在。
8. Inverse of a 2×2 Matrix | 2×2 矩阵的逆矩阵
The inverse of a square matrix M, denoted M⁻¹, satisfies M × M⁻¹ = M⁻¹ × M = I, where I is the identity matrix. For a 2 × 2 non-singular matrix M = [a b; c d], the inverse is given by:
方阵 M 的逆矩阵记作 M⁻¹,满足 M × M⁻¹ = M⁻¹ × M = I,其中 I 是单位矩阵。对于一个 2 × 2 非奇异矩阵 M = [a b; c d],其逆矩阵公式为:
M⁻¹ = (1 / (ad − bc)) × [d -b; -c a]
Here, the coefficient is the reciprocal of the determinant. You simply swap the positions of a and d, change the signs of b and c, and then multiply by the reciprocal of the determinant.
这里,系数是行列式的倒数。只需交换 a 和 d 的位置,将 b 和 c 变号,然后乘以行列式的倒数即可。
For example, if M = [4 1; 6 2], then det(M) = 8 − 6 = 2, so M⁻¹ = (1/2) × [2 -1; -6 4] = [1 -0.5; -3 2]. Always verify by checking M M⁻¹ = I.
例如,若 M = [4 1; 6 2],则 det(M) = 8 − 6 = 2,所以 M⁻¹ = (1/2) × [2 -1; -6 4] = [1 -0.5; -3 2]。务必检验 M M⁻¹ = I 以验证结果。
If the determinant is zero, the inverse does not exist. This links directly to solving equations where a unique solution is only possible when the coefficient matrix is non-singular.
若行列式为零,则逆矩阵不存在。这直接关系到解方程组时,只有当系数矩阵非奇异时才存在唯一解。
9. Solving Simultaneous Equations using Matrices | 使用矩阵解联立方程
A pair of linear simultaneous equations, such as ax + by = e and cx + dy = f, can be written in matrix form as:
一对线性联立方程,如 ax + by = e 和 cx + dy = f,可以写成矩阵形式:
[a b; c d] × [x; y] = [e; f]
If the coefficient matrix M = [a b; c d] is non-singular, we can multiply both sides by M⁻¹ to isolate the variable column matrix:
如果系数矩阵 M = [a b; c d] 是非奇异的,我们可以在两边乘以 M⁻¹ 来分离变量列矩阵:
[x; y] = M⁻¹ × [e; f]
This gives a direct method to find x and y without elimination or substitution. For example, solve 2x + y = 5 and x − y = 1. Here M = [2 1; 1 -1], det(M) = −2 − 1 = −3, M⁻¹ = (1/(-3)) × [-1 -1; -1 2] = [1/3 1/3; 1/3 -2/3]. Then [x; y] = [1/3 1/3; 1/3 -2/3] × [5; 1] = [(5/3+1/3); (5/3 -2/3)] = [2; 1].
这提供了一种无需消元或代入直接求 x 和 y 的方法。例如,解 2x + y = 5 和 x − y = 1。此处 M = [2 1; 1 -1],det(M) = −3,M⁻¹ = (1/(-3)) × [-1 -1; -1 2] = [1/3 1/3; 1/3 -2/3]。则 [x; y] = [1/3 1/3; 1/3 -2/3] × [5; 1] = [2; 1]。
This matrix method is particularly efficient when solving several systems with the same coefficient matrix but different constant terms, as seen in many WJEC exam questions.
当同一个系数矩阵对应多组不同常数项时,这种矩阵方法尤其高效,这在许多 WJEC 考题中都会遇到。
10. Singular Matrices and Their Properties | 奇异矩阵及其性质
A singular matrix is one whose determinant is zero. Such a matrix does not have an inverse, and the rows (or columns) are linearly dependent – one row is a multiple of the other in the 2 × 2 case.
奇异矩阵是指行列式为零的矩阵。这种矩阵没有逆矩阵,并且其行(或列)线性相关——在 2 × 2 的情况下,一行是另一行的倍数。
If M is singular, the system M × [x; y] = [e; f] either has no solution or infinitely many solutions, depending on the constants. This is because the two equations are essentially the same or contradictory.
如果 M 是奇异矩阵,方程组 M × [x; y] = [e; f] 可能无解或有无穷多解,具体取决于常数项。这是因为两个方程本质上相同或互相矛盾。
Recognising a singular matrix quickly (by checking if ad = bc) helps in determining the nature of the solutions without fully solving the equations, saving time in exams.
快速识别奇异矩阵(检查 ad 是否等于 bc)有助于在不解完方程的情况下判断解的性质,从而在考试中节省时间。
11. Transformation Matrices: Rotation and Reflection | 变换矩阵:旋转与反射
In WJEC IGCSE, you may encounter 2 × 2 matrices that represent geometric transformations in the coordinate plane. Multiplying a transformation matrix by the position vector [x; y] gives the new coordinates.
在 WJEC IGCSE 考试中,你可能会遇到表示坐标平面内几何变换的 2 × 2 矩阵。用变换矩阵乘以位置向量 [x; y] 就能得到新坐标。
Common transformation matrices include: rotation by 90° anticlockwise about the origin, R = [0 -1; 1 0]; reflection in the x-axis, [1 0; 0 -1]; and reflection in the line y = x, [0 1; 1 0].
常见的变换矩阵有:绕原点逆时针旋转 90°(R = [0 -1; 1 0]);关于 x 轴的反射([1 0; 0 -1]);以及关于直线 y = x 的反射([0 1; 1 0])。
By applying these matrices to the vertices of a shape, you can find the image after transformation. This links matrix arithmetic directly to geometry and is a favourite topic for multistep problems.
将这些矩阵施加到图形的顶点上,便可得到变换后的像。这直接将矩阵运算与几何联系起来,也是多步骤问题中的常见考点。
12. Matrix Equations and Combined Operations | 矩阵方程与混合运算
WJEC questions often ask you to solve for an unknown matrix in equations like AX = B, where A and B are known matrices. If A is invertible, you can multiply both sides by A⁻¹ on the left to get X = A⁻¹B. Remember that order matters: A⁻¹B is not the same as BA⁻¹.
WJEC 考题经常要求你求解像 AX = B 这样的方程中的未知矩阵,其中 A 和 B 是已知矩阵。若 A 可逆,你可以左乘 A⁻¹ 得到 X = A⁻¹B。记住顺序很重要:A⁻¹B 不等于 BA⁻¹。
You may also need to perform several operations in succession: first scalar multiplication, then addition, then matrix multiplication. Following the standard order of operations (with brackets taking priority) is essential. Always check dimensions after each step.
你可能还需要按顺序执行多个运算:先进行标量乘法,再做加法,然后是矩阵乘法。遵循标准的运算顺序(括号优先)至关重要,并且每一步后都要检查维数是否匹配。
Practising mixed problems will help you manage the complexity and avoid careless errors on the day of the exam.
多练习混合运算题目有助于你应对复杂的计算,并避免考试当天的粗心错误。
Published by TutorHao | Maths Revision Series | aleveler.com
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导