A first lesson on matrices: what a matrix is, how to read its order, how to build a matrix from a formula for its entries, the common types of matrices, and how to use equality of matrices to find unknowns.
This lesson opens the chapter on matrices for Class 12. It explains that a matrix is a rectangular arrangement of numbers in rows and columns, how the order (rows by columns) is written, and how to construct a matrix when a rule for each entry is given. It then walks through the standard types of matrices, including row, column, square, diagonal, scalar, identity and zero matrices, and finishes with equality of matrices used to solve for unknown entries.
What you'll learn
What a matrix is and how to read its order as rows by columns
How to build a matrix when a rule for each entry is given
The common types of matrices, from row and column to diagonal, scalar and identity
How to use equality of two matrices to find unknown entries
Lesson chapters
0:00What a matrix is
1:21Order of a matrix and examples
4:57General entry notation
8:03Building a matrix from a formula
11:50Types of matrices
17:52Equality of matrices
Lesson notes
This lesson introduces matrices: what they are, how their order is written, how to build a matrix from a rule for its entries, the main types of matrices, and how equality of matrices lets you solve for unknowns.
What a matrix is
A matrix is a rectangular arrangement of numbers (its elements or entries) set out in rows and columns. The plural of matrix is matrices. We name a matrix with a capital letter and write its entries inside square brackets, with no commas between them.
For example,
A=[142536]
has first row 1,2,3 and second row 4,5,6.
Order of a matrix
The order of a matrix is its number of rows by its number of columns, written m×n and read "m by n", where m is the number of rows and n the number of columns. The matrix A above has 2 rows and 3 columns, so its order is 2×3.
A few more examples:
B=236(order 3×1),C=[2−35](order 1×3)
If the order is m×n, the total number of entries is mn. So a 2×3 matrix has 2×3=6 entries.
General entry notation
A general matrix is written A=[aij], where aij is the entry in row i and column j, with 1≤i≤m and 1≤j≤n and i,j∈N.
Order from a given number of entries. If a matrix has 6 entries, its order can be any pair of factors of 6: 1×6, 2×3, 3×2 or 6×1.
Building a matrix from a formula
When a rule for aij is given, evaluate it for each position.
Row matrix: a single row, e.g. [012] (order 1×3).
Column matrix: a single column, e.g. [34] (order 2×1).
Square matrix: equal numbers of rows and columns, e.g. [3546].
Diagonal matrix: a square matrix in which every entry off the main diagonal is 0, e.g. [1002] or 100030002.
Scalar matrix: a diagonal matrix whose diagonal entries are all equal, e.g. 200020002.
Identity matrix: a diagonal matrix whose diagonal entries are all 1. We write I1,I2,I3 for the identity matrices of order 1,2,3, for example I2=[1001] and I3=100010001.
Zero matrix: every entry is 0.
Equality of matrices
Two matrices are equal when they have the same order and their corresponding entries are equal. This lets you read off unknowns by matching position to position.
Example: matching entries
[2346]=[x3yz]
gives x=2, y=4, z=6.
Example: leading to a quadratic
[x+yxy5+z8]=[6838]
Matching entries gives 5+z=3, so z=−2, together with x+y=6 and xy=8. From x=6−y,
(6−y)y=8⟹y2−6y+8=0⟹(y−2)(y−4)=0
so y=2 or y=4, giving x=4 or x=2.
Key takeaways
A matrix is a rectangular array of numbers, and its order is rows by columns; an m×n matrix has mn entries.
Given a rule aij, evaluate it at each position to build the matrix.
The main types are row, column, square, diagonal, scalar, identity and zero matrices.
Two matrices are equal exactly when they have the same order and equal corresponding entries, which you can use to solve for unknowns.