What is the order of a matrix? A matrix is a rectangular arrangement of numbers (called elements) arranged in rows and columns. The order of a matrix describes its size: number of rows × number of columns.
Notation: A matrix with 'm' rows and 'n' columns has order m × n (read as "m by n").
Example: Matrix A = [ 3 5 7 ] has 1 row and 3 columns → order = 1 × 3 Matrix B = [ 2 ] has 1 row and 1 column → order = 1 × 1 Matrix C = [ 1 4 2 5 3 6 ] has 3 rows and 2 columns → order = 3 × 2
General representation: A = [aᵢⱼ] where:
- i = row number (1 to m)
- j = column number (1 to n)
- aᵢⱼ = element in the i-th row and j-th column
Special types of matrices based on order:
| Type | Definition | Example |
|---|---|---|
| Row matrix | m = 1 (one row) | [2, 5, 8] |
| Column matrix | n = 1 (one column) | [3; 7; 9] |
| Square matrix | m = n (same rows and columns) | [1 2; 3 4] |
| Zero matrix | All elements are 0 | [0 0; 0 0] |
Real-life analogy: Think of a matrix as a spreadsheet or a table. The order tells you how many rows and columns the table has — just like a classroom seating chart with 5 rows and 4 columns is a 5 × 4 arrangement!