In Chapter 5 of General Mathematics, we step into the world of Matrices. These are not just boxes of numbers; they are powerful tools for organizing data, solving systems of equations, and analyzing complex networks. Mastering the “Logic of Arrays” allows you to process large amounts of information simultaneously—a skill essential for computer science, economics, and engineering.
Concepts and Skills Covered:
- Matrix Notation: Identifying the order (rows columns) and specific elements ().
- Arithmetic Operations: Performing addition, subtraction, and scalar multiplication.
- Matrix Multiplication: Understanding conformability and the row-by-column multiplication process.
- Special Matrices: Utilizing Identity () and Zero () matrices.
- Determinants and Inverses: Calculating the determinant () and finding the inverse to solve equations.Network Analysis: Representing connections as adjacency matrices and using powers of matrices (like ) to find multi-step paths.
***************************
Q1. What is the order (dimensions) of the matrix ?
A. 6
B. 2×3
C. 1×6
D. 3×2
Hint: Count the number of horizontal rows first, then the number of vertical columns.
Q2. Under what condition can two matrices, and , be added or subtracted?
A. They must have the exact same order (dimensions).
B. The determinant of both matrices must be non-zero.
C. The number of columns in A must equal the number of rows in B.
D. They must both be square matrices.
Hint: Think about whether you could add a matrix to a matrix.
Q3. If , what is the result of the scalar multiplication 3B?
A.
B.
C.
D.
Hint: Distribute the number 3 to every number inside the brackets.
Q4. Matrix has order and Matrix has order . What is the order of the resulting matrix ?
A. The multiplication is not possible.
B. 5×3
C. 2×2
D. 3×5
Hint: The ‘inner’ numbers must be the same to multiply, while the ‘outer’ numbers determine the new shape.
Q5. Given and , calculate the product
A.
B.
C.
D.
Hint: Multiply the row elements by the column elements and add them together.
Q6. What is the result when any square matrix is multiplied by the identity matrix of the same order?
A. Matrix
B. The Inverse matrix
C. The Identity matrix
D. The Zero matrix O
Hint: Consider the property of the ‘identity’ in regular arithmetic (e.g., ).
Q7. Calculate the determinant of the matrix
A. 7
B. 14
C. −14
D. 26
Hint: Subtract the product of the ‘off-diagonal’ from the product of the ‘main diagonal’.
Q8. A matrix is said to be ‘singular’ (having no inverse) if:
A. All of its elements are positive.
B. It contains at least one zero element.
C. Its determinant is equal to zero.
D. It is not a square matrix.
Hint: Think about why you cannot divide by zero in the inverse formula.
Q9. In an adjacency matrix representing a network, what does the entry in row , column typically represent?
A. The number of two-step paths between the vertices.
B. The number of direct paths (one-step) from vertex i to vertex j.
C. The importance or ‘weight’ of the vertex.
D. The total distance between vertex i and vertex j.
Hint: An adjacency matrix is a map of ‘who is connected to whom’.
Q10. If is an adjacency matrix for a communication network, what information does the matrix provide?
A. A list of vertices that are not connected to any others.
B. The square of every individual number in the original matrix.
C. The number of 2-step paths between any two vertices.
D. The network with all connection directions reversed.
Hint: Think about what happens to ‘steps’ in a path when you multiply the connection matrix by itself.
*********
一般数学の第5章では、行列の世界に触れます。行列は単なる数字の箱ではありません。データの整理、連立方程式の解法、複雑なネットワークの解析に役立つ強力なツールです。「配列の論理」を習得することで、大量の情報を同時に処理できるようになります。これは、コンピュータサイエンス、経済学、工学に不可欠なスキルです。
扱う概念とスキル:
行列の表記:順序(行 列)と特定の要素()を識別する。
算術演算:加算、減算、スカラー乗算を実行する。
行列の乗算:適合性と行と列の乗算プロセスを理解する。
特殊行列:単位行列()と零行列()を活用する。
行列式と逆行列:方程式を解くために行列式 () を計算し、逆行列を求める。
ネットワーク分析:接続を隣接行列として表現し、行列のべき乗( など)を用いて多段階経路を求める。
**************************
Right answers.
Q1. B.
The order is written as rows columns; this matrix has 2 horizontal rows and 3 vertical columns.
Q2. A. They must have the exact same order (dimensions).
Matrix addition is performed element-by-element, so the positions must correspond exactly in both matrices.
Q3. C.
Scalar multiplication involves multiplying every individual element inside the matrix by the constant 3.
Q4. D.
The inner dimensions (2) match for multiplication, and the outer dimensions (3 and 5) define the size of the result.
Q5. C.
Multiplying a by a gives a result: .
Q6. A. Matrix
The identity matrix acts like the number 1 in scalar multiplication; it leaves the original matrix unchanged ().
Q7. B. 14
The determinant is calculated as , which is .
Q8. C. Its determinant is equal to zero.
Since the formula for the inverse involves dividing by the determinant, a zero value makes the calculation undefined.
Q9. B. The number of direct paths (one-step) from vertex to vertex .
Adjacency matrices record the immediate connections between nodes in a graph or network.
Q10. C. The number of 2-step paths between any two vertices.
Raising the adjacency matrix to the power of reveals the number of -step paths available in the network.