The essence of Mathematics lies in its freedom. — Cantor
3.1 Introduction
A matrix is a compact way to write systems of linear equations, and is used in science, economics, cryptography, and computer graphics.
3.2 Matrix
A matrix is an ordered rectangular array of numbers (or functions). Entries are called elements.
Order: A matrix with rows and columns has order . It has elements.
We write , where is the entry in row and column .
Possible orders of a matrix with elements: , , , .
3.3 Types of Matrices
- Column matrix: only one column, order
- Row matrix: only one row, order
- Square matrix:
- Diagonal matrix: square, and when
- Scalar matrix: diagonal, and all diagonal entries equal a constant
- Identity matrix : if , else
- Zero (null) matrix : every entry is
Equality: if they have the same order and for all .
3.4 Operations on Matrices
- Scalar multiple:
- Addition is commutative and associative (same order)
Multiplication: If is and is , then is with
- In general
3.5 Transpose, Symmetric and Skew-symmetric
If , then .
is symmetric if .
is skew-symmetric if .
Every square matrix can be written as the sum of a symmetric matrix and a skew-symmetric matrix.
If and are symmetric of the same order, then is symmetric if and only if .
3.6 Inverse of a Matrix
If , then .
The inverse of a square matrix, if it exists, is unique.
Chapter Summary
- Order has entries
- Identity : ones on the diagonal
- defined only when columns of = rows of
- Inverse exists and is unique when
Exercises (NCERT)
- Exercise 3.1 — order and construction
- Exercise 3.2 — types and equality
- Later exercises — operations, transpose, inverse
- Miscellaneous Exercise