1. 矩阵是什么:从单个数字到二维数组 | What Is a Matrix: From Single Numbers to Two-Dimensional Arrays
在 IB DP 数学课程中,矩阵(matrix)是一个按行和列排列的数字矩形阵列。与普通数字不同,矩阵把多个数值组织在一个整体结构中,方便我们同时处理大量数据。比如一个班级 6 名学生的数学和物理成绩,就可以用一个 6 行 2 列的矩阵来表示,每一行对应一名学生,每一列对应一门科目。
In the IB DP Mathematics course, a matrix is a rectangular array of numbers arranged in rows and columns. Unlike ordinary numbers, a matrix organises many values into one unified structure, making it convenient to process large amounts of data simultaneously. For example, the mathematics and physics scores of six students in a class can be represented by a matrix with 6 rows and 2 columns, where each row corresponds to one student and each column corresponds to one subject.
矩阵中的每一个数字称为元素(entry 或 element)。矩阵通常用大写字母表示,如 A、B、M。矩阵的维度(dimension 或 order)用”行数 x 列数”描述:一个 m 行 n 列的矩阵记作 m x n 矩阵。例如,一个 2 x 3 矩阵有 2 行 3 列。行数和列数相等的矩阵称为方阵(square matrix),例如 2 x 2 矩阵和 3 x 3 矩阵都是方阵。在 IB 考试中,最常见的方阵是 2 x 2 和 3 x 3 矩阵。
Each number inside a matrix is called an entry or element. Matrices are usually denoted by capital letters such as A, B and M. The dimension or order of a matrix is described as “rows by columns”: a matrix with m rows and n columns is called an m by n matrix. For example, a 2 x 3 matrix has 2 rows and 3 columns. A matrix with an equal number of rows and columns is called a square matrix; both 2 x 2 and 3 x 3 matrices are square matrices. In IB examinations, the most frequently tested square matrices are 2 x 2 and 3 x 3 matrices.
矩阵的表示方式有多种。我们可以写出完整的元素阵列,也可以用符号表示第 i 行第 j 列的元素,记作 a_ij。例如,A = [a_ij] 表示矩阵 A 的第 i 行第 j 列元素为 a_ij。理解这种下标记法对于后续学习矩阵乘法中的元素求和公式至关重要。IB 考试常要求学生根据定义写出特定位置的元素,或根据条件构造矩阵。
Matrices can be presented in several ways. We can write out the full array of entries, or use symbols to represent the entry in the i-th row and j-th column, denoted as a_ij. For example, A = [a_ij] means that the entry of matrix A in row i and column j is a_ij. Understanding this subscript notation is essential for the element-summing formula used later in matrix multiplication. IB examinations often ask students to write down the entry at a particular position from a definition, or to construct a matrix satisfying given conditions.
2. 特殊矩阵:零矩阵、单位矩阵与对角矩阵 | Special Matrices: Zero, Identity and Diagonal Matrices
有几类特殊矩阵在 IB 考试中反复出现。零矩阵(zero matrix)是所有元素都为 0 的矩阵,它在矩阵加法中扮演”0″的角色。单位矩阵(identity matrix)是主对角线(左上到右下)全为 1、其余位置全为 0 的方阵,记作 I。单位矩阵是矩阵乘法中的”1″:任何矩阵乘以同维数的单位矩阵,结果仍为原矩阵。
Several special types of matrices appear repeatedly in IB examinations. The zero matrix is a matrix in which every entry is 0; it plays the role of “0” in matrix addition. The identity matrix is a square matrix with 1s on the main diagonal (from top-left to bottom-right) and 0s everywhere else, denoted by I. The identity matrix acts as “1” in matrix multiplication: multiplying any matrix by an identity matrix of matching dimensions leaves the original matrix unchanged.
对角矩阵(diagonal matrix)是主对角线以外的元素全部为 0 的方阵。对角矩阵的乘法特别简单:两个对角矩阵相乘,结果仍是对角矩阵,且对应位置的元素直接相乘。如果对角矩阵主对角线上的元素都相同,它称为标量矩阵(scalar matrix),例如 3I 就是主对角线全为 3 的矩阵。
A diagonal matrix is a square matrix in which all entries off the main diagonal are zero. Multiplication of diagonal matrices is especially simple: the product of two diagonal matrices is again a diagonal matrix, and the entries at corresponding positions are simply multiplied together. If all the diagonal entries of a diagonal matrix are identical, it is called a scalar matrix; for example, 3I is the matrix with 3s along the main diagonal.
上三角矩阵(upper triangular matrix)是主对角线以下元素全为 0 的方阵;下三角矩阵(lower triangular matrix)则是主对角线以上元素全为 0。三角矩阵的行列式等于主对角线元素的乘积,这是一个在行列式计算中非常实用的结论。IB 考试常通过定义判断矩阵类型,例如给出一个矩阵后要求判断它是否是对称矩阵、对角矩阵或三角矩阵。
An upper triangular matrix is a square matrix with zeros below the main diagonal, while a lower triangular matrix has zeros above the main diagonal. The determinant of a triangular matrix equals the product of its main diagonal entries, a highly practical result in determinant computation. IB examinations often ask students to classify a given matrix, for example judging whether it is symmetric, diagonal or triangular.
3. 矩阵加法与数乘:逐元素运算规则 | Matrix Addition and Scalar Multiplication: Entry-by-Entry Rules
矩阵加法和数乘是矩阵最基本的两种运算,它们的规则非常简单:逐元素进行。两个矩阵能够相加的前提是它们的维度完全相同。若 A 和 B 都是 m x n 矩阵,则 A + B 的第 i 行第 j 列元素等于 A 的对应元素加上 B 的对应元素。例如,两个 2 x 2 矩阵相加,就是把四个对应位置分别相加。
Matrix addition and scalar multiplication are the two most basic matrix operations, and their rules are very simple: they are performed entry by entry. Two matrices can be added only if they have exactly the same dimensions. If A and B are both m x n matrices, then the entry in row i and column j of A + B equals the corresponding entry of A plus the corresponding entry of B. For example, adding two 2 x 2 matrices means adding the four entries at matching positions separately.
数乘(scalar multiplication)是指矩阵乘以一个普通数字(标量)。数乘时,矩阵的每一个元素都要乘以这个标量。例如,3A 就是把 A 中每个元素都乘以 3。注意,矩阵乘法中”矩阵乘以矩阵”与”标量乘以矩阵”是完全不同的两种运算,前者规则复杂得多,后者只是简单的逐元素缩放。
Scalar multiplication refers to multiplying a matrix by an ordinary number (a scalar). When performing scalar multiplication, every entry of the matrix is multiplied by that scalar. For example, 3A means multiplying every entry of A by 3. Note that in matrix algebra, “matrix times matrix” and “scalar times matrix” are completely different operations: the former has far more complex rules, while the latter is simply entry-by-entry scaling.
矩阵减法可以看作加法与数乘的组合:A – B = A + (-1)B。矩阵运算满足交换律(A + B = B + A)、结合律((A + B) + C = A + (B + C))以及分配律(k(A + B) = kA + kB)。这些性质与普通数字的运算性质非常相似,因此矩阵加减和数乘在考试中难度较低,但学生仍需注意运算顺序和负号处理,避免粗心失分。
Matrix subtraction can be viewed as a combination of addition and scalar multiplication: A – B = A + (-1)B. Matrix operations satisfy the commutative law (A + B = B + A), the associative law ((A + B) + C = A + (B + C)) and the distributive law (k(A + B) = kA + kB). These properties closely resemble those of ordinary numbers, so addition, subtraction and scalar multiplication are low-difficulty questions in examinations; nevertheless, students must pay attention to the order of operations and negative signs to avoid careless mistakes.
4. 矩阵乘法:行乘列的规则与不满足交换律 | Matrix Multiplication: The Row-by-Column Rule and Non-Commutativity
矩阵乘法是 IB 矩阵章节的核心考点,也是学生最容易出错的地方。两个矩阵 A 和 B 可以相乘的前提是 A 的列数等于 B 的行数。若 A 是 m x p 矩阵,B 是 p x n 矩阵,则乘积 AB 是 m x n 矩阵。乘积矩阵 C = AB 中,第 i 行第 j 列的元素 c_ij 等于 A 的第 i 行元素与 B 的第 j 列元素逐项相乘后求和。
Matrix multiplication is the core assessment point of the matrix chapter in IB and the area where students make the most mistakes. Two matrices A and B can be multiplied only if the number of columns of A equals the number of rows of B. If A is an m x p matrix and B is a p x n matrix, then the product AB is an m x n matrix. The entry c_ij in row i and column j of the product matrix C = AB equals the sum of the products of the i-th row of A with the j-th column of B, taken term by term.
以 2 x 2 矩阵为例:若 A = [a b; c d],B = [e f; g h],则 AB = [ae+bg af+bh; ce+dg cf+dh]。这个公式在 IB 考试中经常直接考察,学生必须能够熟练手算 2 x 2 矩阵的乘积,并且能够用图形计算器(GDC)验证结果。对于 3 x 3 矩阵,手算量较大,IB 考试通常允许使用 GDC 计算,但理解行乘列的规则仍然是基本要求。
Taking 2 x 2 matrices as an example: if A = [a b; c d] and B = [e f; g h], then AB = [ae+bg af+bh; ce+dg cf+dh]. This formula is tested directly in IB examinations, and students must be able to multiply 2 x 2 matrices fluently by hand and verify results with a graphing calculator (GDC). For 3 x 3 matrices, the amount of manual computation is large, so IB examinations usually allow the use of a GDC; nevertheless, understanding the row-by-column rule remains a fundamental requirement.
矩阵乘法最重要的性质是它不满足交换律:一般情况下 AB 不等于 BA。事实上,当 A 是 2 x 3 矩阵、B 是 3 x 2 矩阵时,AB 是 2 x 2 矩阵而 BA 是 3 x 3 矩阵,两者的维度都不同,更谈不上相等。即使 AB 和 BA 都是同维数方阵,它们的元素通常也不相等。这是矩阵代数与普通数字代数最大的区别之一,IB 考试常以判断题或选择题形式考察这一点。
The most important property of matrix multiplication is that it is not commutative: in general, AB does not equal BA. In fact, if A is a 2 x 3 matrix and B is a 3 x 2 matrix, then AB is a 2 x 2 matrix while BA is a 3 x 3 matrix; their dimensions differ, so equality is out of the question. Even when AB and BA are square matrices of the same dimensions, their entries are usually different. This is one of the biggest differences between matrix algebra and ordinary number algebra, and IB examinations often test this point through true/false or multiple-choice questions.
矩阵乘法仍然满足结合律((AB)C = A(BC))和分配律(A(B+C) = AB + AC,以及 (A+B)C = AC + BC)。这些性质在简化复杂矩阵表达式时非常有用。此外,还有一条重要性质:AB = 0(零矩阵)并不一定意味着 A = 0 或 B = 0,这与普通数字的”零因子”性质完全不同,是 IB 考试中的经典陷阱。
Matrix multiplication still satisfies the associative law ((AB)C = A(BC)) and the distributive laws (A(B+C) = AB + AC, and (A+B)C = AC + BC). These properties are very useful when simplifying complicated matrix expressions. There is another important property: AB = 0 (the zero matrix) does not necessarily imply A = 0 or B = 0, which is completely different from the “zero divisor” property of ordinary numbers and is a classic trap in IB examinations.
5. 矩阵的转置:行列互换 | The Transpose: Swapping Rows and Columns
矩阵的转置(transpose)是把矩阵的行与列互换得到的矩阵。若 A 是 m x n 矩阵,则它的转置记作 A^T,是一个 n x m 矩阵。转置后的第 i 行第 j 列元素等于原矩阵第 j 行第 i 列元素。例如,2 x 3 矩阵的转置是 3 x 2 矩阵。转置运算在 IB 考试中经常与矩阵乘法和线性变换结合考察。
The transpose of a matrix is obtained by swapping its rows and columns. If A is an m x n matrix, its transpose, denoted A^T, is an n x m matrix. The entry in row i and column j of the transpose equals the entry in row j and column i of the original matrix. For example, the transpose of a 2 x 3 matrix is a 3 x 2 matrix. The transpose operation is frequently combined with matrix multiplication and linear transformations in IB examinations.
转置运算满足几条重要性质:(A^T)^T = A,即两次转置回到原矩阵;(A + B)^T = A^T + B^T,转置可以分配到加法上;(kA)^T = k(A^T),转置与数乘可交换顺序。最重要的是乘积转置公式:(AB)^T = B^T A^T,注意这里的顺序发生了反转,先写的矩阵在后。这条公式在 IB 考试中是一个高频考点,学生经常因为忘记反转顺序而失分。
The transpose satisfies several important properties: (A^T)^T = A, meaning two transposes return the original matrix; (A + B)^T = A^T + B^T, meaning the transpose distributes over addition; and (kA)^T = k(A^T), meaning the transpose commutes with scalar multiplication. The most important is the product rule: (AB)^T = B^T A^T. Notice that the order reverses: the matrix written first appears last. This formula is a high-frequency assessment point in IB examinations, and students often lose marks by forgetting to reverse the order.
如果一个方阵的转置等于它自身,即 A^T = A,那么这个矩阵称为对称矩阵(symmetric matrix)。对称矩阵关于主对角线对称,例如 [1 2; 2 3] 就是对称矩阵。若 A^T = -A,则称 A 为反对称矩阵(skew-symmetric matrix),其主对角线上的元素一定全为 0。IB 考试常要求判断一个矩阵是否对称,或利用对称性简化计算。
If the transpose of a square matrix equals the matrix itself, that is A^T = A, then the matrix is called a symmetric matrix. A symmetric matrix is symmetric about its main diagonal; for example, [1 2; 2 3] is symmetric. If A^T = -A, then A is called a skew-symmetric matrix, and all entries on its main diagonal must be zero. IB examinations often ask students to determine whether a matrix is symmetric, or to use symmetry to simplify computations.
6. 行列式:方阵的”面积”与可逆性判断 | Determinants: The “Area” of a Matrix and Invertibility
行列式(determinant)是对方阵定义的一个数值,记作 det(A) 或 |A|。对于 2 x 2 矩阵 A = [a b; c d],行列式为 det(A) = ad – bc。这个公式必须牢记:主对角线乘积减去副对角线乘积。对于 3 x 3 矩阵,行列式可以通过拉普拉斯展开(沿某一行或列展开)计算,也可以用 GDC 直接求出。
The determinant is a number defined for a square matrix, denoted det(A) or |A|. For a 2 x 2 matrix A = [a b; c d], the determinant is det(A) = ad – bc. This formula must be memorised: the product of the main diagonal minus the product of the other diagonal. For a 3 x 3 matrix, the determinant can be computed by Laplace expansion (expanding along a row or column), or directly with a GDC.
行列式有一个非常直观的几何意义:2 x 2 矩阵的行列式的绝对值等于以矩阵的两列为边构成的平行四边形的面积。类似地,3 x 3 矩阵行列式的绝对值等于以三列为边构成的平行六面体的体积。这一几何意义在 IB 的线性变换章节中经常考察,例如求变换前后面积的变化比例。
The determinant has a very intuitive geometric meaning: the absolute value of the determinant of a 2 x 2 matrix equals the area of the parallelogram formed by the two columns of the matrix as its sides. Similarly, the absolute value of the determinant of a 3 x 3 matrix equals the volume of the parallelepiped formed by its three columns. This geometric interpretation is frequently tested in the IB linear transformations chapter, for example when calculating the ratio of areas before and after a transformation.
行列式最重要的作用之一是判断矩阵是否可逆:方阵 A 存在逆矩阵的充要条件是 det(A) 不等于 0。若 det(A) = 0,则 A 称为奇异矩阵(singular matrix),它没有逆矩阵;若 det(A) 不等于 0,则 A 称为非奇异矩阵(non-singular matrix),它一定有逆矩阵。行列式为零还意味着矩阵对应的线性变换会把面积(或体积)压缩为 0,即变换不是一对一的。
One of the most important uses of the determinant is to judge whether a matrix is invertible: a square matrix A has an inverse if and only if det(A) is not equal to 0. If det(A) = 0, then A is called a singular matrix and it has no inverse; if det(A) is not equal to 0, then A is called a non-singular matrix and it always has an inverse. A zero determinant also means that the corresponding linear transformation compresses area (or volume) to zero, so the transformation is not one-to-one.
7. 逆矩阵:矩阵的”除法” | Inverse Matrices: The “Division” of Matrices
在普通代数中,a 除以 b 可以看作 a 乘以 b 的倒数。矩阵中没有直接的除法运算,但我们可以用逆矩阵实现类似的功能。若 A 是非奇异方阵,则存在唯一的矩阵 A^(-1),满足 A A^(-1) = A^(-1) A = I,其中 I 是单位矩阵。A^(-1) 称为 A 的逆矩阵。
In ordinary algebra, dividing a by b can be viewed as multiplying a by the reciprocal of b. There is no direct division operation for matrices, but we can achieve a similar effect using inverse matrices. If A is a non-singular square matrix, there exists a unique matrix A^(-1) satisfying A A^(-1) = A^(-1) A = I, where I is the identity matrix. A^(-1) is called the inverse of A.
对于 2 x 2 矩阵 A = [a b; c d],逆矩阵公式为 A^(-1) = 1/(ad-bc) 乘以 [d -b; -c a]。注意两点:第一,主对角线交换位置,副对角线变号;第二,前面的系数 1/(ad-bc) 正是行列式的倒数。这个公式在 IB 考试中要求熟练掌握,学生必须能够独立完成 2 x 2 矩阵的求逆,并能用 GDC 验证。
For a 2 x 2 matrix A = [a b; c d], the inverse formula is A^(-1) = 1/(ad-bc) multiplied by [d -b; -c a]. Note two points: first, the main diagonal entries swap positions while the other diagonal entries change sign; second, the leading coefficient 1/(ad-bc) is exactly the reciprocal of the determinant. This formula must be mastered in IB examinations; students should be able to invert a 2 x 2 matrix independently and verify the result with a GDC.
对于 3 x 3 矩阵,手算逆矩阵非常繁琐,通常使用 GDC 的求逆功能。但学生仍需理解逆矩阵的基本性质:(A^(-1))^(-1) = A;(AB)^(-1) = B^(-1) A^(-1),顺序同样反转;(A^T)^(-1) = (A^(-1))^T。如果 det(A) = 0,则 A^(-1) 不存在,任何试图求逆的操作都会失败。IB 考试常要求先判断可逆性,再求逆矩阵。
For 3 x 3 matrices, computing the inverse by hand is very tedious, so the inverse function of a GDC is usually used. Nevertheless, students still need to understand the basic properties of inverses: (A^(-1))^(-1) = A; (AB)^(-1) = B^(-1) A^(-1), with the order again reversed; and (A^T)^(-1) = (A^(-1))^T. If det(A) = 0, then A^(-1) does not exist, and any attempt to find it will fail. IB examinations often ask students to determine invertibility first, and then find the inverse matrix.
8. 用矩阵解线性方程组:AX = B 模型 | Solving Linear Systems with Matrices: The AX = B Model
矩阵最经典的应用之一是求解线性方程组。考虑方程组 2x + 3y = 7 和 x – y = 1。我们可以把它写成矩阵形式 AX = B,其中 A = [2 3; 1 -1] 是系数矩阵,X = [x; y] 是未知数向量,B = [7; 1] 是常数向量。这种”系数矩阵乘以未知数向量等于常数向量”的形式是 IB 考试的标准写法,学生必须熟练转换。
One of the most classic applications of matrices is solving systems of linear equations. Consider the system 2x + 3y = 7 and x – y = 1. We can write it in matrix form AX = B, where A = [2 3; 1 -1] is the coefficient matrix, X = [x; y] is the vector of unknowns, and B = [7; 1] is the constant vector. This form, “coefficient matrix times unknown vector equals constant vector”, is the standard notation in IB examinations, and students must be fluent in converting between the two representations.
当系数矩阵 A 可逆时,方程组的唯一解为 X = A^(-1) B。求解步骤是:第一步写出系数矩阵 A 和常数向量 B;第二步判断 A 是否可逆(det(A) 是否不为 0);第三步计算 A^(-1) 并乘以 B,得到 X。在 IB 考试中,这一方法通常与 GDC 结合使用:用 GDC 直接求 A^(-1) B,或使用计算器的方程求解功能。
When the coefficient matrix A is invertible, the unique solution of the system is X = A^(-1) B. The solving steps are: first, write down the coefficient matrix A and the constant vector B; second, determine whether A is invertible (whether det(A) is non-zero); third, compute A^(-1) and multiply it by B to obtain X. In IB examinations, this method is usually combined with a GDC: either compute A^(-1) B directly on the calculator, or use the calculator’s equation-solving function.
如果 det(A) = 0,方程组可能无解,也可能有无穷多组解,需要进一步判断。增广矩阵(augmented matrix)方法可以帮助判断:把系数矩阵 A 和常数向量 B 拼接成增广矩阵 [A | B],通过行变换化为行阶梯形。若出现矛盾行(如 0 = 1),则方程组无解;若出现全零行且对应常数也为 0,则有无穷多组解。IB 考试常以”判断解的情况并给出理由”的形式考察这一内容。
If det(A) = 0, the system may have no solution or infinitely many solutions, and further analysis is required. The augmented matrix method helps with this: concatenate the coefficient matrix A and the constant vector B into the augmented matrix [A | B], and reduce it to row echelon form through row operations. If a contradictory row appears (such as 0 = 1), the system has no solution; if an all-zero row appears with a matching zero constant, there are infinitely many solutions. IB examinations often test this content in the form of “determine the nature of the solutions and justify your answer”.
9. 线性变换:矩阵如何移动平面上的点 | Linear Transformations: How Matrices Move Points on a Plane
一个 2 x 2 矩阵可以定义一个平面上的线性变换(linear transformation):把每个点 (x, y) 映射到新点 (x’, y’),其中 [x’; y’] = A [x; y]。换句话说,变换后的坐标等于矩阵 A 乘以原坐标向量。IB 的 AA HL 和 AI HL 课程都要求掌握常见变换矩阵,并能描述一个给定矩阵对应的几何变换。
A 2 x 2 matrix can define a linear transformation on the plane: it maps each point (x, y) to a new point (x’, y’), where [x’; y’] = A [x; y]. In other words, the transformed coordinates equal the matrix A multiplied by the original coordinate vector. Both IB AA HL and AI HL courses require mastery of common transformation matrices and the ability to describe the geometric transformation corresponding to a given matrix.
几类必须记住的标准变换矩阵包括:旋转矩阵 R(theta) = [cos theta -sin theta; sin theta cos theta],表示逆时针旋转角度 theta;关于 x 轴的反射矩阵 [1 0; 0 -1];关于 y 轴的反射矩阵 [-1 0; 0 1];关于直线 y = x 的反射矩阵 [0 1; 1 0];缩放矩阵 [k 0; 0 k] 表示整体放大 k 倍。这些矩阵在 IB 公式手册中可能给出,但学生仍需理解每个矩阵的几何含义。
Several standard transformation matrices must be remembered: the rotation matrix R(theta) = [cos theta -sin theta; sin theta cos theta], representing a counter-clockwise rotation by angle theta; the reflection matrix [1 0; 0 -1] about the x-axis; the reflection matrix [-1 0; 0 1] about the y-axis; the reflection matrix [0 1; 1 0] about the line y = x; and the scaling matrix [k 0; 0 k], representing an enlargement by factor k. These matrices may be given in the IB formula booklet, but students still need to understand the geometric meaning of each matrix.
复合变换(composition of transformations)是另一个高频考点。如果先施加变换 T1,再施加变换 T2,那么复合变换对应的矩阵为 T2 乘以 T1(注意顺序:后施加的矩阵写在前面)。例如,先旋转 90 度再关于 x 轴反射,对应的矩阵是 [1 0; 0 -1] 乘以 R(90 度)。IB 考试常要求学生写出复合变换的矩阵,或根据已知变换矩阵反推变换过程。
Composition of transformations is another high-frequency assessment point. If transformation T1 is applied first and then transformation T2, the matrix of the composite transformation is T2 times T1 (note the order: the matrix applied later is written first). For example, rotating by 90 degrees and then reflecting about the x-axis corresponds to the matrix [1 0; 0 -1] multiplied by R(90 degrees). IB examinations often ask students to write down the matrix of a composite transformation, or to deduce the transformation process from a given matrix.
线性变换与行列式有紧密联系:变换矩阵的行列式的绝对值等于变换前后面积的变化比例。若行列式为负,说明变换还包含翻转(改变了定向)。若行列式为零,说明变换把整个平面压缩成一条线或一个点,面积变为 0,变换不可逆。这些联系在 IB Paper 1 和 Paper 2 中都可能出现。
Linear transformations are closely connected to determinants: the absolute value of the determinant of the transformation matrix equals the ratio of areas before and after the transformation. If the determinant is negative, the transformation also involves a flip (a change of orientation). If the determinant is zero, the transformation compresses the whole plane into a line or a point, the area becomes zero, and the transformation is not invertible. These connections may appear in both IB Paper 1 and Paper 2.
10. 矩阵的幂与递推应用 | Powers of Matrices and Recursive Applications
矩阵的幂(power of a matrix)是指同一个矩阵连续相乘:A^2 = AA,A^3 = AAA,依此类推。计算矩阵幂是 IB AI HL 的重要考点,特别是在马尔可夫链(Markov chains)和人口迁移模型中。例如,若转移矩阵为 P,则 P^n 的第 i 行第 j 列元素表示经过 n 步从状态 j 转移到状态 i 的概率。
The power of a matrix means multiplying the same matrix by itself repeatedly: A^2 = AA, A^3 = AAA, and so on. Computing matrix powers is an important assessment point in IB AI HL, especially in Markov chains and population migration models. For example, if the transition matrix is P, then the entry in row i and column j of P^n represents the probability of moving from state j to state i after n steps.
利用 GDC 计算矩阵幂非常方便:只需输入矩阵并选择幂运算。但学生必须能够解释矩阵幂结果的实际含义。例如,一个关于天气的马尔可夫模型,如果今天晴天的概率向量为 v0,那么经过 n 天后的概率向量为 P^n v0。当 n 趋向无穷大时,概率向量往往收敛到一个稳定分布(steady state),这是 IB AI HL 的经典问题。
Computing matrix powers with a GDC is very convenient: simply enter the matrix and choose the power operation. However, students must be able to interpret the actual meaning of the results. For example, in a Markov model about weather, if the probability vector for today being sunny is v0, then the probability vector after n days is P^n v0. As n tends to infinity, the probability vector often converges to a steady state, which is a classic problem in IB AI HL.
矩阵幂还可以用于求解递推关系。例如,斐波那契数列 F(n+1) = F(n) + F(n-1) 可以用矩阵 [1 1; 1 0] 的幂来表示:F(n+1) 和 F(n) 组成的向量等于该矩阵的 n 次幂乘以初始向量。这种”用矩阵表达递推”的思想是矩阵应用的高级形式,体现了 IB 课程强调的概念迁移能力。学生应掌握将递推式写成矩阵形式的基本方法。
Matrix powers can also be used to solve recurrence relations. For example, the Fibonacci sequence F(n+1) = F(n) + F(n-1) can be represented using powers of the matrix [1 1; 1 0]: the vector containing F(n+1) and F(n) equals the n-th power of this matrix multiplied by the initial vector. This idea of “expressing recurrences with matrices” is an advanced application of matrices and reflects the conceptual transfer skills emphasised in the IB curriculum. Students should master the basic method of rewriting a recurrence in matrix form.
11. IB 考点精讲:题型分析与 GDC 使用技巧 | IB Exam Focus: Question Patterns and GDC Tips
综合历年 IB 真题,矩阵章节的考点可以归纳为五类:第一类是矩阵运算,包括加减、数乘、乘法和转置,要求学生手算或使用 GDC;第二类是行列式与逆矩阵,常与可逆性判断结合;第三类是线性方程组求解,以 AX = B 模型为主;第四类是线性变换,要求写出变换矩阵或描述变换效果;第五类是矩阵幂与马尔可夫链,多在 AI HL 中出现。明确考点分布有助于学生有针对性地复习。
Based on past IB examination papers, the assessment points of the matrix chapter can be grouped into five categories: first, matrix operations, including addition, subtraction, scalar multiplication, multiplication and transposition, requiring hand calculation or GDC use; second, determinants and inverse matrices, often combined with invertibility judgement; third, solving linear systems through the AX = B model; fourth, linear transformations, requiring students to write down transformation matrices or describe their effects; fifth, matrix powers and Markov chains, appearing mostly in AI HL. Knowing the distribution of assessment points helps students revise in a targeted way.
GDC 是 IB 考试中矩阵题目的重要工具。学生应熟练掌握以下操作:在矩阵模式中输入矩阵并命名(如 [A]);用行列式函数求 det([A]);用求逆功能得到 [A] 的逆;直接用矩阵乘法计算 [A][B];用 x^(-1) 功能计算 A^(-1) B 解方程组。注意每次使用后检查屏幕上的矩阵维数是否正确,避免因输入错误导致整题失分。
The GDC is an essential tool for matrix questions in IB examinations. Students should master the following operations fluently: entering a matrix in matrix mode and naming it (such as [A]); using the determinant function to find det([A]); using the inverse function to obtain the inverse of [A]; computing [A][B] directly with matrix multiplication; and using the x^(-1) function to compute A^(-1) B for solving systems. Always check that the dimensions shown on the screen are correct after each entry, to avoid losing marks on the whole question because of a typing error.
在 Paper 1(无计算器)中,2 x 2 矩阵的运算、行列式和逆矩阵是必考内容,学生必须手算熟练。建议掌握以下检查技巧:求完逆矩阵后,验证 A 乘以 A^(-1) 是否等于单位矩阵;算完乘积后,检查结果矩阵的维度是否符合行乘列规则;求完行列式后,用主对角线乘积减副对角线乘积的口诀复核。这些检查能显著减少计算失误。
In Paper 1 (no calculator), operations on 2 x 2 matrices, determinants and inverse matrices are compulsory content, and students must be fluent in hand calculation. The following checking techniques are recommended: after finding an inverse, verify that A times A^(-1) equals the identity matrix; after computing a product, check that the dimensions of the result follow the row-by-column rule; after finding a determinant, re-check using the mnemonic of main diagonal product minus the other diagonal product. These checks can significantly reduce computational errors.
最后,建议学生建立矩阵知识体系图:以”矩阵是什么”为根节点,向下分出运算、行列式、逆矩阵、方程组、变换、幂与应用六个分支,每个分支标注核心公式和典型例题。这种知识体系化整理不仅有助于记忆,还能帮助学生在综合题中快速定位所需的矩阵工具,这正是本选题”矩阵代数知识体系与考点精讲”的核心目标。
Finally, students are advised to build a knowledge map of matrices: starting from the root node “what is a matrix”, branching down into six areas: operations, determinants, inverse matrices, systems of equations, transformations, and powers with applications, with core formulas and typical examples labelled on each branch. This systematic organisation not only helps memory, but also helps students quickly locate the matrix tool needed in comprehensive questions, which is exactly the core goal of this topic, “Matrix Algebra: Knowledge System and Key Assessment Points”.
Summary | 总结
本文系统梳理了 IB DP 数学课程中矩阵代数的完整知识体系。我们从矩阵的定义与维度出发,认识了零矩阵、单位矩阵、对角矩阵等特殊矩阵;掌握了矩阵加减、数乘、乘法和转置的运算规则,特别强调了矩阵乘法不满足交换律这一关键区别;深入学习了行列式的计算与几何意义,以及逆矩阵的存在条件与求解方法;并将矩阵应用于线性方程组求解、线性变换描述和矩阵幂递推等实际问题。
This article has systematically organised the complete knowledge system of matrix algebra in the IB DP Mathematics course. Starting from the definition and dimensions of matrices, we became familiar with special matrices such as the zero matrix, identity matrix and diagonal matrix; we mastered the rules of addition, subtraction, scalar multiplication, multiplication and transposition, with special emphasis on the key difference that matrix multiplication is not commutative; we studied determinants and their geometric meaning in depth, together with the existence conditions and methods for finding inverse matrices; and we applied matrices to practical problems including solving linear systems, describing linear transformations, and using matrix powers in recurrences.
针对 IB 考试,我们归纳了矩阵章节的五大考点类型,并给出了 GDC 使用技巧和 Paper 1 手算检查方法。希望这篇”知识体系与考点精讲”能够帮助同学们建立清晰的矩阵知识框架,在考试中熟练运用每一种矩阵工具。掌握矩阵代数,不仅是为了应对考试,更是为大学阶段学习线性代数打下坚实基础。
With respect to the IB examinations, we summarised the five assessment-point categories of the matrix chapter and provided GDC tips as well as hand-calculation checking methods for Paper 1. It is hoped that this “knowledge system and key assessment points” guide will help students build a clear matrix knowledge framework and use every matrix tool fluently in examinations. Mastering matrix algebra is not only about passing examinations, but also about laying a solid foundation for linear algebra at university level.
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导