Lesson Note on Matrices
Subject: Mathematics
Class: SS1
Topic: Matrices
Duration: 80 minutes
Sub-topic Outline
1. 1. Meaning of Matrices
2. 2. Types of Matrices
3. 3. Operations on Matrices
4. 4. Applications of Matrices
5. 5. Evaluation / Assignment
1. Meaning of Matrices
A matrix (plural: matrices) is a rectangular array of numbers, symbols, or expressions
arranged in rows and columns. Each number or element in a matrix is called an entry or
element.
A matrix is usually denoted by a capital letter (e.g., A, B, C), and its elements are represented
with small letters having subscripts that show their position.
Example:
A = [a11 a12 a13; a21 a22 a23] (2 × 3 matrix)
Order of a Matrix: If a matrix has m rows and n columns, its order is said to be m × n.
2. Types of Matrices
Row Matrix: A matrix with only one row. Example: [3 5 7]
Column Matrix: A matrix with only one column. Example: [4; 9; -2]
Square Matrix: A matrix with the same number of rows and columns. Example: [[2 3]; [1 4]]
Zero (Null) Matrix: All elements are zero. Example: [[0 0]; [0 0]]
Diagonal Matrix: A square matrix where all non-diagonal elements are zero. Example: [[5 0];
[0 9]]
Scalar Matrix: A diagonal matrix with all diagonal elements equal. Example: [[3 0]; [0 3]]
Identity (Unit) Matrix: A square matrix with ones on the diagonal and zeros elsewhere.
Example: [[1 0]; [0 1]]
Transpose Matrix: Matrix formed by interchanging rows and columns. Example: if A=[[1 2];
[3 4]], then Aᵀ=[[1 3]; [2 4]]
3. Operations on Matrices
(a) Addition of Matrices: Two matrices can be added only if they are of the same order. Add
corresponding elements.
(b) Subtraction of Matrices: Subtract corresponding elements of the same order.
(c) Scalar Multiplication: Each element of the matrix is multiplied by a constant (scalar).
(d) Multiplication of Matrices: Matrix multiplication is possible only if the number of
columns in the first matrix equals the number of rows in the second.
(e) Transpose of a Matrix: Interchange rows and columns.
(f) Determinant of a 2 × 2 Matrix: |A| = ad - bc
(g) Inverse of a 2 × 2 Matrix: A⁻¹ = (1/(ad - bc)) × [[d -b]; [-c a]] if |A| ≠ 0.
4. Applications of Matrices
Solving Simultaneous Equations: Used to solve systems of linear equations using A⁻¹B.
Computer Graphics: Used to perform image transformations such as rotation and scaling.
Economics and Business: Used to represent input-output and profit-loss models.
Cryptography: Used in encryption and decryption algorithms.
Statistics: Used to organize data and perform regression or correlation analysis.
Network Analysis: Used to model and analyze connections in transportation or
communication networks.
5. Evaluation / Classwork
1. Define a matrix and give three examples.
2. Find A + B and 2A - B, if A=[[3 1]; [2 4]], B=[[2 3]; [1 5]].
3. If A=[[2 4]; [1 3]] and B=[[1 2]; [0 5]], find AB.
4. Find the determinant and inverse of C=[[1 2]; [3 4]].
5. State four real-life applications of matrices.
6. Assignment
Prepare a short note explaining how matrices can be used to solve the system of equations:
2x + y = 5, x + 3y = 7 using the inverse matrix method.