2.6.12 · D1Matrices & Determinants — Introduction

Foundations — Solving systems using matrix inversion

2,796 words13 min readBack to topic

Everything on the parent page — , , , , "consistent", "cofactor" — is built from a small stack of ideas. This page unpacks every one of them from nothing, in the order they depend on each other. If a word below is new, you are in the right place.


0. What is a number-grid (a matrix)?

Before any equation, we need the object everything is written on.

The single number sitting in row , column is written row first, column second. So means "row 2, column 1".

Figure — Solving systems using matrix inversion

WHY the topic needs it: the coefficient matrix , the variable matrix , and the constant matrix are all matrices. Without the grid there is no .


1. A column of numbers = a vector = an arrow

A matrix with only one column is special enough to get its own name.

Figure — Solving systems using matrix inversion

WHY the topic needs it: (the unknowns) and (the answers) are column vectors. "Solving the system" literally means "find the arrow ".


2. Multiplying a matrix by a vector: the "machine" acts

This is the engine of the whole topic, so we go slow.

WHAT we just did: row 1 paired with gives ; row 2 gives . WHY this pattern: because is exactly the left side of a linear equation. The multiplication rule was designed so that a matrix times a vector reproduces the left-hand sides of equations. WHAT IT LOOKS LIKE: feeding an input arrow into a box labelled and getting a new arrow out.

Figure — Solving systems using matrix inversion

3. The identity matrix — the "do-nothing" machine

WHY the topic needs it: the whole derivation of ends the instant we reach , because is just . is the finish line.


4. The inverse — the reverse machine

WHY the little ? In ordinary numbers, is "the thing that cancels 5", because . For matrices is "the thing that cancels ", and plays the role of . Same idea, new object.

WHY the topic needs it: is the entire method. No inverse, no one-shot solution.


5. The determinant — does the machine flatten space?

We need one number that tells us whether even exists. Like the inverse, it is a square-only quantity.

Figure — Solving systems using matrix inversion

WHY the topic needs it: divides by . If you'd divide by zero — impossible — which is the maths saying "this machine can't be reversed." See Determinants for the full story.


6. Minors, cofactors, and the adjugate — the parts that build

To actually compute the inverse we need three linked ideas. (Full detail: Cofactors and Minors and Adjoint and Inverse of a Matrix.)


7. Consistency vocabulary


How it all feeds the topic

Matrix: grid of numbers

Square matrix n by n

Column vector = arrow

Dimension matching rule

Matrix times vector

Matrix times matrix

System as AX = B

Identity matrix I

Inverse A to the minus 1

Determinant det A

Minors and cofactors

Adjugate adj A

X = A inverse B

Consistency check


Equipment checklist

Read each item as a question, hide the answer, and test yourself.

What is a matrix and how do we label an entry ?
A rectangular grid of numbers; is the number in row , column (row first, column second).
What is a square matrix, and why does it matter here?
Rows = columns (); only square matrices can have an identity, an inverse, a determinant, or an adjugate.
What is a column vector, and what picture goes with it?
A one-column matrix; an arrow from the origin to the coordinates it lists.
When is the product even defined?
When the columns of equal the rows of (inner numbers match); the result has the outer size.
How do you multiply a matrix by a column vector?
Take each row of the matrix, multiply term-by-term with the vector, and add — row-of-left times column-of-right.
How do you multiply two matrices?
Entry = row of the left dotted with column of the right; inner sizes must match.
Why does reproduce a linear system?
Row times gives the left side of equation ; setting it equal to recreates equation .
What is the identity matrix and what does it do?
A square matrix, s on the diagonal and s elsewhere; it leaves every vector unchanged, .
What does mean and which matrices have one?
The reverse machine with ; only square, non-singular matrices have one.
What is for a matrix?
Just — the base case that minors reduce to.
What does measure for a , and what does mean?
The signed area of the column parallelogram; zero means space is squashed flat (singular, non-reversible).
What is the difference between a cofactor grid and ?
The adjugate is the cofactor grid transposed (rows and columns swapped).
Why is the adjugate "swap diagonal, negate off-diagonal"?
The four cofactors give ; transposing it yields .
Why does ?
Diagonal entries are the cofactor expansion of ; off-diagonal entries are expansions of a matrix with two equal rows, which is .
How does explain the cases?
If the left side is ; if no solution, if infinitely many (or none).
What does "consistent" mean?
The system has at least one solution.

Connections