📚 GCSE Edexcel Maths: Matrices Exam Focus | GCSE Edexcel 数学:矩阵 考点精讲
Matrices are a powerful tool for organising numbers and solving systems of equations efficiently. In the Edexcel GCSE specification, matrices appear mainly as an extension topic, but mastering them can give you an edge on higher-tier papers. This article distils the core matrix concepts you need for the exam, from basic notation to solving simultaneous equations, with clear bilingual explanations and exam-style guidance.
矩阵是一种高效组织数字和求解方程组的强大工具。在 Edexcel GCSE 考纲中,矩阵主要作为拓展内容出现,但掌握它们会让你在高级卷中脱颖而出。本文提炼了考试必备的核心矩阵知识,从基本表示法到解联立方程组,配以清晰的双语讲解和贴近真题的指导。
1. What is a Matrix? | 什么是矩阵?
A matrix is a rectangular array of numbers arranged in rows and columns. Each number inside is called an element. A matrix with m rows and n columns is said to have order m × n.
矩阵是一个由行和列排列而成的矩形数字阵列。阵列中的每一个数叫做元素。一个有 m 行 n 列的矩阵称为 m × n 阶矩阵。
For example, matrix A = [ 3, 1, 5 ; 2, 0, 7 ] has 2 rows and 3 columns, so its order is 2 × 3. The element in row 2, column 3 is 7, often written as a₂₃ = 7.
例如,矩阵 A = [ 3, 1, 5 ; 2, 0, 7 ] 有 2 行 3 列,因此是 2 × 3 阶。第 2 行第 3 列的元素是 7,常写作 a₂₃ = 7。
| 3 | 1 | 5 |
| 2 | 0 | 7 |
You must be comfortable identifying the order and elements, because this underpins later operations.
你必须能够熟练辨认矩阵的阶和元素,因为这是后续运算的基础。
2. Matrix Addition and Subtraction | 矩阵的加减法
Two matrices can be added or subtracted only if they have the same order. You simply add or subtract corresponding elements.
两个矩阵只有当它们的阶相同时才能相加或相减。只需将对应位置的元素相加或相减即可。
If A = [ 4, 1 ; 0, 3 ] and B = [ 2, 5 ; 1, -1 ], then A + B = [ 4+2, 1+5 ; 0+1, 3+(-1) ] = [ 6, 6 ; 1, 2 ].
若 A = [ 4, 1 ; 0, 3 ] 且 B = [ 2, 5 ; 1, -1 ],则 A + B = [ 4+2, 1+5 ; 0+1, 3+(-1) ] = [ 6, 6 ; 1, 2 ]。
Subtraction works in the same way: A – B = [ 4-2, 1-5 ; 0-1, 3-(-1) ] = [ 2, -4 ; -1, 4 ].
减法同理:A – B = [ 4-2, 1-5 ; 0-1, 3-(-1) ] = [ 2, -4 ; -1, 4 ]。
In exam questions, always check the orders first – if they don’t match, the operation is undefined.
在考试题中,一定要先检查阶是否一致——如果不匹配,该运算就是无定义的。
3. Scalar Multiplication | 标量乘法
Scalar multiplication means multiplying every element of a matrix by a single number (a scalar).
标量乘法是指用一个数(标量)去乘矩阵中的每一个元素。
If k = 3 and M = [ 2, -1 ; 4, 0.5 ], then kM = [ 3×2, 3×(-1) ; 3×4, 3×0.5 ] = [ 6, -3 ; 12, 1.5 ].
若 k = 3 且 M = [ 2, -1 ; 4, 0.5 ],则 kM = [ 3×2, 3×(-1) ; 3×4, 3×0.5 ] = [ 6, -3 ; 12, 1.5 ]。
This operation is straightforward, but it is often used inside the process of combining transformations or before calculating determinants.
这个运算很直接,但它常被用于组合变换或计算行列式前的化简中。
4. Matrix Multiplication | 矩阵乘法
Matrix multiplication is not as simple as element-wise multiplication. To multiply two matrices A (m × n) and B (p × q), we require n = p. The resulting matrix has order m × q.
矩阵乘法不是简单的对应元素相乘。要将矩阵 A(m × n)与 B(p × q)相乘,必须满足 n = p。所得矩阵的阶为 m × q。
Each element in the product is obtained by taking the dot product of a row from A with a column from B. For position (i, j), multiply row i of A by column j of B and sum the products.
乘积中的每个元素是通过取 A 的行与 B 的列的点积得到的。对于位置 (i, j),将 A 的第 i 行与 B 的第 j 列对应相乘再求和。
Example: Let A = [ 1, 2 ; 3, 4 ] (2×2) and B = [ 2, 0 ; 1, 3 ] (2×2). Then AB = [ 1×2+2×1, 1×0+2×3 ; 3×2+4×1, 3×0+4×3 ] = [ 4, 6 ; 10, 12 ].
例如:设 A = [ 1, 2 ; 3, 4 ](2×2)且 B = [ 2, 0 ; 1, 3 ](2×2)。则 AB = [ 1×2+2×1, 1×0+2×3 ; 3×2+4×1, 3×0+4×3 ] = [ 4, 6 ; 10, 12 ]。
Remember: order matters! In general, AB ≠ BA. Practice the row-times-column method until it becomes automatic.
切记:顺序很重要!一般情况下 AB ≠ BA。多加练习行乘列的方法,直到熟能生巧。
5. The 2×2 Identity Matrix | 2×2 单位矩阵
The identity matrix I is the matrix that, when multiplied by another matrix, leaves it unchanged. For 2×2 matrices, I = [ 1, 0 ; 0, 1 ].
单位矩阵 I 是一个与其他矩阵相乘后仍保持该矩阵不变的矩阵。对于 2×2 矩阵,I = [ 1, 0 ; 0, 1 ]。
So for any 2×2 matrix M, MI = IM = M. It behaves like the number 1 in ordinary multiplication.
因此对于任何 2×2 矩阵 M,有 MI = IM = M。它的作用就像普通乘法中的数字 1 一样。
This concept is essential when we talk about inverse matrices and solving matrix equations.
这个概念在讨论逆矩阵和求解矩阵方程时至关重要。
6. Determinant of a 2×2 Matrix | 2×2 矩阵的行列式
The determinant of a 2×2 matrix A = [ a, b ; c, d ] is a single number, calculated as det(A) = ad – bc.
2×2 矩阵 A = [ a, b ; c, d ] 的行列式是一个数值,计算公式为 det(A) = ad – bc。
For example, if A = [ 3, 2 ; 1, 4 ], then det(A) = (3)(4) – (2)(1) = 12 – 2 = 10.
例如,若 A = [ 3, 2 ; 1, 4 ],则 det(A) = (3)(4) – (2)(1) = 12 – 2 = 10。
The determinant tells you important things: whether a matrix is singular (det = 0), and whether transformations preserve area. It is also used to find the inverse.
行列式能告诉你重要信息:矩阵是否奇异(det = 0),以及变换是否保持面积。它也可用于求逆矩阵。
7. Singular and Non-Singular Matrices | 奇异矩阵与非奇异矩阵
A square matrix is singular if its determinant is zero. It does not have an inverse. A non-singular matrix has a non-zero determinant and does possess an inverse.
若一个方阵的行列式为零,则它是奇异矩阵,没有逆矩阵。非奇异矩阵的行列式不为零,且存在逆矩阵。
Why does det = 0 cause problems? When ad – bc = 0, the rows or columns are proportional; the matrix collapses two dimensions into one, losing information.
为什么 det = 0 会出问题?当 ad – bc = 0 时,行或列成比例;矩阵将二维压缩成一维,丢失了信息。
In exams, you might be asked to find the value of x that makes a matrix singular. Set det = 0 and solve for x.
在考试中,你可能会被问到:求使矩阵成为奇异矩阵的 x 值。只需令 det = 0,然后解出 x。
8. Inverse of a 2×2 Matrix | 2×2 矩阵的逆
The inverse of a non-singular 2×2 matrix A = [ a, b ; c, d ] is A⁻¹ = (1/det(A)) × [ d, -b ; -c, a ].
非奇异 2×2 矩阵 A = [ a, b ; c, d ] 的逆矩阵为 A⁻¹ = (1/det(A)) × [ d, -b ; -c, a ]。
Notice the pattern: swap a and d, change the signs of b and c, then multiply by 1/(ad – bc).
注意规律:交换 a 和 d,改变 b 和 c 的符号,然后乘以 1/(ad – bc)。
For instance, if A = [ 4, 3 ; 3, 2 ], det = 4×2 – 3×3 = 8 – 9 = -1, so A⁻¹ = 1/(-1) × [ 2, -3 ; -3, 4 ] = [ -2, 3 ; 3, -4 ].
例如,若 A = [ 4, 3 ; 3, 2 ],det = 4×2 – 3×3 = 8 – 9 = -1,所以 A⁻¹ = 1/(-1) × [ 2, -3 ; -3, 4 ] = [ -2, 3 ; 3, -4 ]。
Always check your inverse: A × A⁻¹ should equal I.
务必检验你的逆矩阵:A × A⁻¹ 应该等于 I。
9. Using the Inverse to Solve Matrix Equations | 用逆矩阵解矩阵方程
If you have a matrix equation AX = B, and A is non-singular, you can multiply both sides on the left by A⁻¹ to get X = A⁻¹B.
如果你有一个矩阵方程 AX = B,且 A 非奇异,则可以在等式两边左乘 A⁻¹,得到 X = A⁻¹B。
Remember: because matrix multiplication is not commutative, you must multiply on the same side for both sides of the equation. For XA = B, you would multiply on the right by A⁻¹.
记住:由于矩阵乘法不满足交换律,你必须在等式两边同侧相乘。对于 XA = B,要右乘 A⁻¹。
This method is a direct route to finding unknown matrices in structured problems.
这种方法是在结构化问题中求未知矩阵的直接途径。
10. Solving Simultaneous Equations Using Matrices | 用矩阵解联立方程组
One of the most practical applications at GCSE is solving two linear equations. Write the equations as a single matrix equation and then use the inverse.
GCSE 中最实用的应用之一是解两个线性方程。将方程组写成单个矩阵方程,然后使用逆矩阵求解。
For the system: ax + by = e, cx + dy = f, rewrite as [ a, b ; c, d ] × [ x ; y ] = [ e ; f ]. Let A = [ a, b ; c, d ], X = [ x ; y ], B = [ e ; f ]. Then X = A⁻¹ B.
对于方程组:ax + by = e, cx + dy = f,改写为 [ a, b ; c, d ] × [ x ; y ] = [ e ; f ]。设 A = [ a, b ; c, d ],X = [ x ; y ],B = [ e ; f ]。则 X = A⁻¹ B。
Example: Solve 2x + y = 7, x – 3y = 4. A = [ 2, 1 ; 1, -3 ], det = (2)(-3) – (1)(1) = -6 – 1 = -7. A⁻¹ = (1/-7)[ -3, -1 ; -1, 2 ] = [ 3/7, 1/7 ; 1/7, -2/7 ]. Then X = A⁻¹ B = [ 3/7, 1/7 ; 1/7, -2/7 ] × [ 7 ; 4 ] = [ (3/7×7 + 1/7×4) ; (1/7×7 + -2/7×4) ] = [ (3 + 4/7) ; (1 – 8/7) ] = [ 25/7 ; -1/7 ], so x = 25/7, y = -1/7.
答题示例:解 2x + y = 7, x – 3y = 4。A = [ 2, 1 ; 1, -3 ],det = (2)(-3) – (1)(1) = -6 – 1 = -7。A⁻¹ = (1/-7)[ -3, -1 ; -1, 2 ] = [ 3/7, 1/7 ; 1/7, -2/7 ]。然后 X = A⁻¹ B 计算得 x = 25/7,y = -1/7。
This matrix method is systematic and avoids elimination errors – a real time-saver in exams.
这种矩阵方法系统化,可避免消元错误——考试中能节省大量时间。
11. Transformations and Matrices | 变换与矩阵
Matrices can represent geometric transformations. For Edexcel, you may encounter rotation, reflection, enlargement, and shear matrices for 2D vectors.
矩阵可以表示几何变换。在 Edexcel 考试中,你可能会遇到表示二维向量的旋转、反射、放大和剪切矩阵。
Common transformation matrices include: Rotation 90° anticlockwise about origin: [ 0, -1 ; 1, 0 ]; Reflection in the x-axis: [ 1, 0 ; 0, -1 ]; Enlargement scale factor k: [ k, 0 ; 0, k ].
常见的变换矩阵包括:绕原点逆时针旋转 90°:[ 0, -1 ; 1, 0 ];关于 x 轴反射:[ 1, 0 ; 0, -1 ];放大比例因子 k:[ k, 0 ; 0, k ]。
When a vector (x, y) is multiplied by the transformation matrix, the resulting vector gives the image coordinates. This links algebra to geometry neatly.
当向量 (x, y) 乘以变换矩阵时,所得向量给出像的坐标。这将代数与几何巧妙地联系了起来。
12. Exam Tips and Common Pitfalls | 应试技巧与常见误区
Always check the order of matrices before adding or multiplying. A 2×3 and a 3×2 can be multiplied (giving 2×2), but they cannot be added.
在进行加法或乘法之前,务必检查矩阵的阶。2×3 和 3×2 可以相乘(得到 2×2),但不能相加。
When finding an inverse, don’t forget to divide by the determinant. Many marks are lost by writing the adjugate matrix but missing the 1/det step.
求逆矩阵时,不要忘记除以行列式。许多人写出了伴随矩阵却漏了 1/det 这一步,白白丢分。
Double-check your matrix multiplication by verifying with a smaller example or using the identity property: A × A⁻¹ should always give I.
通过小规模验算或利用单位矩阵的性质来复核你的矩阵乘法:A × A⁻¹ 必须等于 I。
If a question asks you to solve equations using matrices, write the system in matrix form first, then show the inverse step clearly – examiners look for method marks.
如果题目要求用矩阵解方程,请先将方程组写成矩阵形式,然后清晰地展示求逆步骤——考官看重方法分。
Finally, remember that singular matrices (det = 0) have no inverse, so the equations either have no unique solution or infinitely many solutions.
最后,记住奇异矩阵(det = 0)没有逆矩阵,因此方程组要么无唯一解,要么有无穷多解。
Published by TutorHao | GCSE Edexcel Maths Revision Series | aleveler.com
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导