📚 PDF资源导航

Matrix Key Points for A-Level CCEA Maths | A-Level CCEA 数学:矩阵 考点精讲

📚 Matrix Key Points for A-Level CCEA Maths | A-Level CCEA 数学:矩阵 考点精讲

Matrices are a fundamental tool in A-Level Mathematics, providing a compact way to organise numbers and solve systems of linear equations. In the CCEA specification, you are expected to master matrix arithmetic, use determinants and inverses, and apply these concepts to both abstract problems and geometric transformations. This revision guide highlights every key point you need, with clear English‑Chinese pairing to reinforce your understanding.

矩阵是A-Level数学中的基本工具,它以紧凑的方式组织数字并求解线性方程组。在CCEA考试大纲中,你应掌握矩阵运算、使用行列式与逆矩阵,并将这些概念应用于抽象问题和几何变换。本复习指南突出所有关键点,以清晰的英中对照强化你的理解。

1. Matrix Notation and Order | 矩阵记号与阶数

A matrix is a rectangular array of numbers arranged in rows and columns. The order of a matrix is given by ‘rows × columns’; for example, a 2×3 matrix has two rows and three columns. The element in the i‑th row and j‑th column is often denoted by aᵢⱼ.

矩阵是由数字按行和列排列而成的矩形阵列。矩阵的阶数用“行×列”表示;例如,一个2×3矩阵有两行三列。第i行第j列的元素通常记作aᵢⱼ。

A square matrix has the same number of rows and columns (e.g., 2×2, 3×3). A column vector is simply an n×1 matrix, and a row vector is a 1×n matrix. Being able to identify the order is essential before any operation.

方阵的行数与列数相同(如2×2、3×3)。列向量就是n×1矩阵,行向量是1×n矩阵。在进行任何运算之前,能够识别矩阵的阶数至关重要。


2. Matrix Addition and Subtraction | 矩阵的加法与减法

Two matrices can be added or subtracted only if they have the same order. The result is found by adding or subtracting corresponding elements. For matrices A and B of order m×n, the sum C = A ± B is defined by cᵢⱼ = aᵢⱼ ± bᵢⱼ for all i, j.

只有当两个矩阵的阶数相同时,它们才能相加或相减。结果矩阵是通过将对应元素相加或相减得到的。对于m×n矩阵A和B,和C = A ± B由cᵢⱼ = aᵢⱼ ± bᵢⱼ对所有i, j定义。

The commutative and associative laws hold for matrix addition: A + B = B + A and (A + B) + C = A + (B + C). Subtraction is not commutative.

矩阵加法满足交换律和结合律:A + B = B + A,(A + B) + C = A + (B + C)。减法不满足交换律。

Always check the order of each matrix before attempting addition or subtraction; otherwise the operation is undefined.

在尝试加法或减法之前,一定要检查每个矩阵的阶数;否则运算无定义。


3. Scalar Multiplication | 标量乘法

To multiply a matrix by a scalar (a single number), multiply every element of the matrix by that scalar. If A is an m×n matrix with elements aᵢⱼ and k is a scalar, then kA has elements k·aᵢⱼ.

要用标量(单个数值)乘一个矩阵,只需将矩阵的每个元素乘以该标量。如果A是一个元素为aᵢⱼ的m×n矩阵,k为标量,那么kA的元素为k·aᵢⱼ。

Scalar multiplication is straightforward but forms the basis for combining operations. The distributive laws apply: k(A + B) = kA + kB and (k + l)A = kA + lA.

标量乘法很简单,但却是组合运算的基础。分配律成立:k(A + B) = kA + kB,(k + l)A = kA + lA。


4. Matrix Multiplication | 矩阵乘法

Matrix multiplication is defined only when the number of columns in the first matrix equals the number of rows in the second. If A is m×n and B is n×p, then the product AB is an m×p matrix. The element in row i and column j of AB is the dot product of the i‑th row of A with the j‑th column of B: (AB)ᵢⱼ = Σ aᵢₖ bₖⱼ (k=1 to n).

只有当第一个矩阵的列数等于第二个矩阵的行数时,矩阵乘法才有定义。若A为m×n矩阵,B为n×p矩阵,则乘积AB为m×p矩阵。AB的第i行第j列元素是A的第i行与B的第j列的点积:(AB)ᵢⱼ = Σ aᵢₖ bₖⱼ (k=1 to n)。

Matrix multiplication is not commutative: in general, AB ≠ BA. However, it is associative: (AB)C = A(BC) whenever the products are defined. The distributive property also holds: A(B+C) = AB + AC.

矩阵乘法不满足交换律:一般AB ≠ BA。但它满足结合律:只要乘积有定义,(AB)C = A(BC)。分配律也成立:A(B+C) = AB + AC。

When multiplying matrices, pay close attention to the order of multiplication and the dimensions. A common mistake is assuming BA exists; for rectangular matrices, one direction may be defined while the other is not.

进行矩阵乘法时,要特别注意乘法的顺序和维度。常见错误是假设BA存在;对于非方阵,可能一个方向的乘积有定义而另一个没有。


5. Identity and Zero Matrices | 单位矩阵和零矩阵

The identity matrix, denoted by I, is a square matrix with 1s on the main diagonal and 0s elsewhere. For any square matrix A of the same size, AI = IA = A. The identity matrix acts like the number 1 in ordinary multiplication.

单位矩阵记作I,是一个方阵,主对角线上的元素为1,其余为0。对于任何相同大小的方阵A,有AI = IA = A。单位矩阵的作用类似于普通乘法中的数字1。

The zero matrix, denoted by 0, has all elements equal to 0. For compatible orders, A + 0 = A and A·0 = 0 (provided multiplication is defined). The zero matrix acts as the additive identity.

零矩阵记作0,所有元素均为0。对于相容的阶数,A + 0 = A且A·0 = 0(只要乘法有定义)。零矩阵作为加法单位元。

Recognising these special matrices is crucial for solving matrix equations and for understanding the concept of matrix inverses.

识别这些特殊矩阵对于求解矩阵方程和理解逆矩阵的概念至关重要。


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

The determinant of a 2×2 matrix A = [a b; c d] is a scalar quantity given by det(A) = |A| = ad − bc. The determinant is often written using vertical bars without brackets: |a, b; c, d|.

2×2矩阵A = [a b; c d]的行列式是一个标量,由det(A) = |A| = ad − bc给出。行列式常用不带括号的竖线表示:|a, b; c, d|。

If det(A) ≠ 0, the matrix is called non‑singular and has an inverse. If det(A) = 0, the matrix is singular and does not possess an inverse. The determinant also appears in the formula for the inverse and in testing linear dependence.

若det(A) ≠ 0,该矩阵称为非奇异矩阵,且存在逆矩阵。若det(A) = 0,该矩阵是奇异矩阵,没有逆矩阵。行列式还出现在逆矩阵公式中以及用于检验线性相关性。

For A = [a, b; c, d], det(A) = ad − bc.

对于A = [a, b; c, d],det(A) = ad − bc。


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

The inverse of a non‑singular 2×2 matrix A = [a b; c d] is given by A⁻¹ = 1/(ad − bc) · [d −b; −c a]. Notice that the positions of a and d are swapped, while b and c change sign. The scalar factor in front is the reciprocal of the determinant.

对于非奇异的2×2矩阵A = [a b; c d],其逆矩阵由A⁻¹ = 1/(ad − bc) · [d −b; −c a]给出。注意a和d的位置互换,b和c变号。前面的标量因子是行列式的倒数。

A matrix multiplied by its inverse gives the identity matrix: AA⁻¹ = A⁻¹A = I. The inverse is unique, meaning there is exactly one matrix with this property for a given non‑singular A.

矩阵乘以其逆矩阵得到单位矩阵:AA⁻¹ = A⁻¹A = I。逆矩阵是唯一的,即对于给定的非奇异矩阵A,恰有一个矩阵具有此性质。

To verify that one matrix is the inverse of another, simply multiply them in both orders; the result must be the identity matrix.

要验证一个矩阵是另一个矩阵的逆,只需将它们按两个顺序相乘;结果必须为单位矩阵。


8. Solving Linear Systems Using the Inverse Matrix | 用逆矩阵解线性方程组

A system of two linear equations in two 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. If A is non‑singular, the solution is X = A⁻¹B.

含有两个未知数的两个线性方程组可写成矩阵形式AX = B,其中A是系数矩阵,X是变量列向量,B是常数向量。如果A非奇异,则解为X = A⁻¹B。

This method is particularly efficient when multiple systems with the same coefficient matrix need to be solved. It also provides a direct link between inverse matrices and solving equations, a favourite exam topic.

当需要求解多个具有相同系数矩阵的方程组时,该方法特别高效。它还直接连接了逆矩阵与解方程,这是考试中常见的话题。

Remember that if det(A) = 0, the system either has no solution or infinitely many solutions; the inverse method cannot be used.

请记住,如果det(A) = 0,则该方程组要么无解,要么有无穷多解;不能使用逆矩阵方法。

Given { a₁₁x + a₁₂y = b₁ ; a₂₁x + a₂₂y = b₂ }, let A = [a₁₁, a₁₂; a₂₁, a₂₂], X = [x; y], B = [b₁; b₂]. Then X = A⁻¹B.

给定{ a₁₁x + a₁₂y = b₁ ; a₂₁x + a₂₂y = b₂ },令A = [a₁₁, a₁₂; a₂₁, a₂₂],X = [x; y],B = [b₁; b₂]。那么X = A⁻¹B。


9. Matrices and Geometrical Transformations | 矩阵与几何变换

2×2 matrices can represent linear transformations of the plane, including rotations, reflections, stretches, shears, and enlargements. Applying a transformation matrix M to a column vector representing a point (x, y)ᵀ maps that point to a new location: [x’; y’] = M [x; y].

2×2矩阵可表示平面的线性变换,包括旋转、反射、拉伸、剪切和放大。将变换矩阵M作用于表示点(x, y)ᵀ的列向量,可将该点映射到新位置:[x’; y’] = M [x; y]。

Common matrices to memorise include: rotation through θ, [cos θ −sin θ; sin θ cos θ]; reflection in the x‑axis, [1 0; 0 −1]; and a stretch by factor k in the x‑direction, [k 0; 0 1]. Understanding how to derive these from basic unit vector mappings is essential.

需记忆的常见矩阵包括:旋转θ角的矩阵[cos θ −sin θ; sin θ cos θ];关于x轴的反射[1 0; 0 −1];以及沿x方向拉伸因子k的矩阵[k 0; 0 1]。理解如何从基本单位向量映射推导它们至关重要。

The determinant of the transformation matrix tells you how area is scaled: a determinant with absolute value greater than 1 enlarges area; a determinant of 0 collapses the plane into a line or point.

变换矩阵的行列式告诉面积如何缩放:绝对值大于1的行列式放大面积;行列式为0则将平面坍缩为一条直线或一个点。


10. 3×3 Matrices and Their Determinants | 3×3 矩阵及其行列式

For a 3×3 matrix, the determinant can be computed using expansion by a row or column (Laplace expansion). For example, expanding by the first row: det(A) = a₁₁·(a₂₂a₃₃ − a₂₃a₃₂) − a₁₂·(a₂₁a₃₃ − a₂₃a₃₁) + a₁₃·(a₂₁a₃₂ − a₂₂a₃₁).

对于3×3矩阵,行列式可通过按某行或某列展开(拉普拉斯展开)来计算。例如,按第一行展开:det(A) = a₁₁·(a₂₂a₃₃ − a₂₃a₃₂) − a₁₂·(a₂₁a₃₃ − a₂₃a₃₁) + a₁₃·(a₂₁a₃₂ − a₂₂a₃₁)。

3×3 determinants are often needed when solving systems of three equations or finding the inverse of a 3×3 matrix using the adjoint method. The same principles of singularity apply: if det(A) = 0, the matrix has no inverse and the corresponding system of equations does not have a unique solution.

当求解三个方程的方程组或用伴随矩阵法求3×3矩阵的逆矩阵时,通常需要3×3行列式。奇异性的原理同样适用:若det(A) = 0,该矩阵无逆矩阵,相应的方程组没有唯一解。

Another useful tool is the rule of Sarrus, which provides a quick way to compute the determinant of a 3×3 matrix by writing the first two columns again to the right.

另一个有用的工具是萨鲁斯法则,它通过在右侧重复写出前两列,快速计算3×3矩阵的行列式。

Published by TutorHao | CCEA Maths 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