Matrices: Definitions and Common Notations | 矩阵的定义与常用记号详解

📚 Matrices: Definitions and Common Notations | 矩阵的定义与常用记号详解

A matrix is one of the most fundamental structures in mathematics, serving as a compact way to organise and manipulate numerical data. In the IB Mathematics curriculum, a thorough understanding of matrix definitions and notations is essential for solving systems of linear equations, performing transformations in geometry, and modelling real-world phenomena such as population dynamics or economics.

矩阵是数学中最基础的结构之一,它以紧凑的方式组织和处理数值数据。在IB数学课程中,深入理解矩阵的定义与记号,对于求解线性方程组、完成几何变换、以及模拟人口动态或经济现象等实际应用至关重要。


1. What Is a Matrix? | 什么是矩阵?

A matrix (plural: matrices) is a rectangular array of numbers, symbols, or expressions arranged in rows and columns. The numbers inside a matrix are called its elements or entries. A matrix is conventionally enclosed by square brackets, for example:

矩阵(英文复数形式为 matrices)是按行与列排列的矩形数表,其中的数字、符号或表达式称为矩阵的元素或分量。矩阵通常用方括号括起来,例如:

A = [ 1 2 3 ; 4 5 6 ]

Here, matrix A has 2 rows and 3 columns. The semicolon indicates the start of a new row. A matrix with m rows and n columns is said to be an m × n matrix (read as “m by n”).

这里的矩阵 A 有 2 行 3 列。分号表示新一行的开始。一个有 m 行、n 列的矩阵称为 m × n 矩阵(读作 “m 乘 n”)。


2. Standard Notation for a Matrix | 矩阵的标准记号

In formal mathematics, a matrix is commonly denoted by an uppercase letter such as A, B, or M. The individual elements are denoted by the corresponding lowercase letter with two subscripts: aᵢⱼ represents the element in the i-th row and j-th column. Thus, a general m × n matrix is written as:

在正式数学中,矩阵通常用大写字母如 A、B 或 M 表示。其各元素用对应的小写字母加双下标表示:aᵢⱼ 表示第 i 行、第 j 列的元素。因此,一个一般的 m × n 矩阵可以写成:

A = (aᵢⱼ) where 1 ≤ i ≤ m and 1 ≤ j ≤ n

  • i is the row index, counting from the top: i = 1, 2, …, m.

    i 为行下标,从最上面一行开始计数:i = 1, 2, …, m。

  • j is the column index, counting from the left: j = 1, 2, …, n.

    j 为列下标,从最左边一列开始计数:j = 1, 2, …, n。

  • The compact form A = (aᵢⱼ) is a shorthand for the entire array.

    紧凑写法 A = (aᵢⱼ) 是对整个数表的简写。


3. Order (Dimension) of a Matrix | 矩阵的阶(维数)

The order of a matrix describes its size: an m × n matrix has m rows and n columns. The total number of elements is m × n. For example, a 2 × 3 matrix has 6 elements; a 3 × 1 matrix has 3 elements. In IB examinations, you are often asked to state the order of a given matrix or to determine the order of a product matrix.

矩阵的阶用于描述其大小:m × n 矩阵有 m 行 n 列,元素总数为 m × n。例如,2 × 3 矩阵有 6 个元素;3 × 1 矩阵有 3 个元素。在IB考试中,常要求你写出给定矩阵的阶,或判断乘积矩阵的阶。

Matrix | 矩阵 Rows | 行数 Columns | 列数 Order | 阶
[ 1 0 0 ] 1 3 1 × 3 (row matrix)
[ 2 ; 5 ] 2 1 2 × 1 (column matrix)
[ 1 2 ; 3 4 ] 2 2 2 × 2 (square matrix)

When m = n, the matrix is called a square matrix. Square matrices are of particular importance because many operations, such as finding inverses and determinants, are defined only for square matrices.

当 m = n 时,矩阵称为方阵。方阵特别重要,因为求逆、求行列式等许多运算都只对方阵定义。


4. Position of an Element: aᵢⱼ | 元素的位置:aᵢⱼ

Every element in a matrix has a unique address: the first subscript tells you the row, and the second subscript tells you the column. For the matrix B below, the element b₂₃ is located at row 2, column 3.

矩阵中的每个元素都有唯一的位置:第一个下标表示所在行,第二个下标表示所在列。对于下面的矩阵 B,元素 b₂₃ 位于第 2 行、第 3 列。

B = [ 1 4 7 ; 2 5 8 ; 3 6 9 ]

Thus b₁₁ = 1, b₂₃ = 8, and b₃₂ = 6. In general, aᵢⱼ is the entry in row i and column j. When a matrix is part of a product AB = C, the element cᵢⱼ is calculated by taking the dot product of the i-th row of A with the j-th column of B.

因此 b₁₁ = 1,b₂₃ = 8,b₃₂ = 6。一般地,aᵢⱼ 表示第 i 行第 j 列的元素。当矩阵参与乘积 AB = C 时,元素 cᵢⱼ 的计算方法为:取 A 的第 i 行与 B 的第 j 列作点积。


5. Common Special Matrices | 常见的特殊矩阵

Several special matrices appear frequently in IB Mathematics, and knowing their notation is crucial.

有几类特殊矩阵在IB数学中频繁出现,掌握它们的记号至关重要。

  • Row matrix: a 1 × n matrix, e.g., [ 2 5 7 ].

    行矩阵:即 1 × n 矩阵,例如 [ 2 5 7 ]。

  • Column matrix: an m × 1 matrix, e.g., [ 3 ; 1 ; 4 ].

    列矩阵:即 m × 1 矩阵,例如 [ 3 ; 1 ; 4 ]。

  • Zero matrix (null matrix): every entry is 0, denoted O or 0. For example, the 2 × 2 zero matrix is O = [ 0 0 ; 0 0 ].

    零矩阵:所有元素都为 0,记作 O 或 0。例如 2 × 2 零矩阵为 O = [ 0 0 ; 0 0 ]。

  • Square matrix: m = n, e.g., a 3 × 3 matrix.

    方阵:m = n,例如 3 × 3 矩阵。

  • Diagonal matrix: a square matrix in which all off-diagonal entries are zero, e.g., D = [ 2 0 ; 0 5 ].

    对角矩阵:除主对角线外所有元素均为 0 的方阵,例如 D = [ 2 0 ; 0 5 ]。

  • Identity matrix: a diagonal matrix with all diagonal entries equal to 1, denoted Iₙ. For n = 3: I₃ = [ 1 0 0 ; 0 1 0 ; 0 0 1 ].

    单位矩阵:主对角线元素全为 1 的对角矩阵,记作 Iₙ。当 n = 3 时:I₃ = [ 1 0 0 ; 0 1 0 ; 0 0 1 ]。


6. Equality of Matrices | 矩阵的相等

Two matrices A and B are equal if and only if they have the same order and every corresponding element is equal: aᵢⱼ = bᵢⱼ for all i and j. This condition is frequently used in IB problems to set up equations. For example, if

两个矩阵 A 和 B 相等,当且仅当它们的阶相同且所有对应元素相等:对所有 i 和 j,都有 aᵢⱼ = bᵢⱼ。这个条件在IB题目中常被用来建立方程。例如,若

[ x 2 ; 3 4 ] = [ 1 2 ; 3 y ]

then by comparing entries we immediately obtain x = 1 and y = 4. This principle of comparing corresponding elements is a powerful and straightforward problem-solving technique.

那么通过逐项比较即可直接得到 x = 1 和 y = 4。这种比较对应元素的方法是强大而直接的解题技巧。


7. Notation for Transpose and Inverse | 转置与逆矩阵的记号

The transpose of a matrix A, denoted Aᵀ, is obtained by interchanging rows and columns. If A is an m × n matrix, then Aᵀ is an n × m matrix. For example:

矩阵 A 的转置记为 Aᵀ,即将行与列互换得到。若 A 为 m × n 矩阵,则 Aᵀ 为 n × m 矩阵。例如:

A = [ 1 2 ; 3 4 ; 5 6 ] ⇒ Aᵀ = [ 1 3 5 ; 2 4 6 ]

The inverse of a square matrix A, denoted A⁻¹, satisfies the property A A⁻¹ = A⁻¹ A = Iₙ. The inverse exists only when the determinant det(A) ≠ 0. In IB examinations, the notation A⁻¹ and the condition on the determinant are essential.

方阵 A 的逆矩阵记为 A⁻¹,满足性质 A A⁻¹ = A⁻¹ A = Iₙ。逆矩阵存在的充要条件是行列式 det(A) ≠ 0。在IB考试中,A⁻¹ 的记号及行列式条件至关重要。


8. Summation and Scalar Multiplication Notations | 求和与数乘的记号

Many matrix definitions can be written compactly using sigma notation. For example, the diagonal of a square matrix A of order n consists of the entries a₁₁, a₂₂, …, aₙₙ. The sum of these diagonal entries is called the trace of A:

许多矩阵定义可以用求和符号简洁地表示。例如,n 阶方阵 A 的主对角线由元素 a₁₁, a₂₂, …, aₙₙ 组成,这些对角线元素之和称为 A 的迹:

tr(A) = a₁₁ + a₂₂ + … + aₙₙ = Σ aᵢᵢ (for i = 1 to n)

Scalar multiplication is also written simply: if k is a real number, then kA is the matrix obtained by multiplying every element of A by k. Each entry of kA is k·aᵢⱼ.

数乘运算的写法也很简单:若 k 为实数,则 kA 表示将 A 中每个元素都乘以 k 所得的矩阵。kA 的每个元素为 k·aᵢⱼ。


9. Row and Column Notation in Context | 行与列记号的上下文应用

In IB examination papers, matrices are typically printed with square brackets and elements aligned in rows and columns. When reading a matrix, always identify the order first, then locate specific entries by row and column. Misreading the order is one of the most common avoidable errors in exams.

在IB试卷中,矩阵通常使用方括号排版,元素按行列对齐。读取矩阵时,应首先判断其阶数,再按行与列定位特定元素。误读阶数是考试中最常见且完全可以避免的错误之一。

A common notation in the context of systems of equations is the augmented matrix, written as [A | b], where A is the coefficient matrix and b is the column of constants. This notation is fundamental to Gaussian elimination and the row-reduction method taught in both Analysis and Approaches (AA) and Applications and Interpretation (AI) courses.

在线性方程组中常用的记号是增广矩阵,记作 [A | b],其中 A 为系数矩阵,b 为常数项列向量。该记法是高斯消元法和行化简法的基础,在分析与方法(AA)以及应用与解释(AI)课程中都会涉及。


10. Common Pitfalls and Key Takeaways | 常见错误与核心要点

  • Always write matrices with square brackets, never with parentheses, in final answers. Parentheses usually represent determinants or are used in alternative notation.

    最终答案中务必使用方括号表示矩阵,不要使用圆括号。圆括号通常表示行列式或表示其他含义。

  • Subscripts: aᵢⱼ means row i, column j, not column i, row j. Keep the order row-then-column consistent.

    下标:aᵢⱼ 表示第 i 行、第 j 列,不是第 i 列、第 j 行。始终遵循先写行、后写列的顺序。

  • The identity matrix Iₙ is the multiplicative identity: for any n × n matrix A, AIₙ = IₙA = A.

    单位矩阵 Iₙ 是乘法单位元:对任意 n 阶方阵 A,都有 AIₙ = IₙA = A。

  • A matrix has no fixed numerical value; it is a data structure. Only when a matrix is 1 × 1 do we sometimes identify it with a scalar.

    矩阵本身没有固定的数值,它是一种数据结构。只有当矩阵为 1 × 1 时,有时才将其与标量等同。


Conclusion | 总结

Mastering the definition and notation of matrices is the first step toward fluency in linear algebra. From the general form A = (aᵢⱼ) to special matrices such as the identity Iₙ and diagonal matrices, each notation carries precise meaning that enables efficient problem solving. In IB Mathematics, clarity in notation is rewarded: it prevents mistakes, communicates your reasoning to the examiner, and builds the foundation for more advanced topics such as matrix multiplication, determinants, transformations, and eigenvalues.

掌握矩阵的定义与记号,是熟练运用线性代数的第一步。从一般形式 A = (aᵢⱼ) 到单位矩阵 Iₙ 和对角矩阵等特殊矩阵,每种记号都承载着精确的数学含义,帮助高效解题。在IB数学中,清晰的记号至关重要:它既能避免错误,又能向考官清晰传达你的推理过程,更是学习矩阵乘法、行列式、变换和特征值等进阶内容的基础。

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