2.6.1 · D1Matrices & Determinants — Introduction

Foundations — Matrix definition — rows, columns, order, elements

1,797 words8 min readBack to topic

Before you can talk about a matrix, you must be fluent in a small handful of ideas: what a grid is, what rows and columns mean, how a label with two little numbers underneath works, and what "" is trying to tell you. This page builds each one from absolute zero, in the order they depend on each other.


1. A grid (the rectangular array)

Plain words: A grid is boxes lined up in straight horizontal and vertical lines, like a chessboard or a chocolate bar. Nothing is missing, nothing sticks out — it is a perfect rectangle of boxes.

The picture: look at the figure below. Every box is the same size, the lines are perfectly straight, and the whole thing forms one clean rectangle.

Figure — Matrix definition — rows, columns, order, elements

Why the topic needs it: The parent note calls a matrix a "rectangular array of numbers." That word rectangular is doing real work — it promises that every row has the same number of boxes and every column has the same number of boxes. No ragged edges. This is what lets us give every box a clean address.


2. Rows and columns (horizontal vs vertical)

Now that we have a grid, we name its two directions.

Plain words:

  • A row is one horizontal line of boxes — read it left-to-right, like a line of text.
  • A column is one vertical line of boxes — read it top-to-bottom, like a stack of coins.

The picture: in the figure, the red band lies flat across — that is a row. Turn your head and a column stands up tall.

Figure — Matrix definition — rows, columns, order, elements

Why the topic needs it: The whole point of a matrix is to organise data in two independent directions at once. In the parent's spreadsheet example, one row = one student, one column = one subject. You cannot describe a box's position without both words.


3. A number in a box (an element)

Plain words: Each box holds exactly one number (or one expression, like ). That single occupant is called an element (or entry) of the matrix.

The picture: every little box in the grid figures above has one — and only one — number written inside it.

Why the topic needs it: A matrix is made of its elements. To do anything with a matrix — compare two of them (Matrix Equality), add them (Matrix Addition), multiply them (Matrix Multiplication) — you work element by element. So we need a foolproof way to name each element. That is the next idea.


4. The subscript address (two little numbers)

Here is the piece of notation that scares beginners the most, built from nothing.

The problem it solves: A single street number (like "house 7") works for a line of houses. But a grid is two-dimensional — you need two coordinates, one for the row and one for the column, exactly like giving a seat as "Row 4, Seat 9."

The notation: we write the name of the matrix in lowercase with two small numbers tucked below it:

Read this out loud as "a-sub-i-j". The two tiny numbers are called subscripts. They are not multiplied, not an exponent — they are just an address label.

The convention (the single most important rule):

  • the first subscript is the row number,
  • the second subscript is the column number.

Row first, column second. Remember it as "RC" — alphabetical, Row before Column.

Figure — Matrix definition — rows, columns, order, elements

The picture: in the figure, the red box is found by first walking down to row , then walking across to column . Down, then across.


5. What "" means (the order)

Plain words: The order (also called dimension or size) of a matrix is the pair of numbers how many rows and how many columns, written with a "" between them:

read aloud as "m by n".

Why the "" symbol here is NOT multiplication: we are not asking for a product. The "" is just a separator that means "rows by columns." It looks like the times sign only by tradition.

But there is a bonus fact: if you do multiply by , you get the total number of boxes — because the grid is a perfect rectangle. A matrix has elements.

Figure — Matrix definition — rows, columns, order, elements

Why order comes first, always: Two matrices can only ever be equal, or added, if they are the same shape. Order is the shape. That is why Matrix Equality and Matrix Addition both start by checking the order, and why Matrix Multiplication has its own rule about how the two orders must fit together.


6. The general template (putting it all together)

Now every symbol in the parent's "general form" is earned. Read it slowly:

  • — the whole matrix (a capital letter names the whole grid).
  • — one element, at row , column (lowercase, with the address).
  • / / — the three kinds of dots meaning "the pattern continues" horizontally, vertically, and diagonally. They save us writing out every single box.
  • The last row's last box — the bottom-right corner, telling you the grid has rows and columns.
Recall Why capital

but lowercase ? Convention ::: The capital letter () names the whole matrix; the same letter in lowercase with subscripts () names one element inside it. Same letter = "these belong together."


Prerequisite map

Grid = rectangular array

Rows horizontal

Columns vertical

Element = one number in a box

Address a sub i j = row i column j

Order = m by n

Matrix definition 2.6.1

Matrix Equality

Types of Matrices

Matrix Addition

This is why the topic sits where it does: grids give you rows and columns, rows and columns give you both the element and the order, and those two together are the matrix definition — which then feeds everything downstream like Matrix Equality and Types of Matrices.


Equipment checklist

Test yourself — cover the right side and answer out loud.

What does "rectangular array" promise about the shape of a matrix?
Every row has the same number of boxes and every column has the same number of boxes — a perfect rectangle, no ragged edges.
Which direction is a row, horizontal or vertical?
Horizontal (flat, left-to-right).
Which direction is a column?
Vertical (tall, top-to-bottom).
In , what does the first subscript mean?
The row number (row first — "RC").
In , what does the second subscript mean?
The column number.
In the matrix , what is ?
(row 2, column 3).
Does mean ?
No — the subscripts are just an address, not multiplication.
What is the top-left element called, or ?
— maths counts from 1.
What does the order "" tell you?
3 rows and 2 columns (rows first, then columns).
How many elements does a matrix have?
.
Is a matrix the same shape as a matrix?
No — swapping the order changes the shape, so it is a different matrix.
What special name does a matrix with get?
A square matrix.