Quadratics: one shape, three questions
Every quadratic ax² + bx + c draws the same shape — a parabola. Only three things ever change: which way it opens (sign of a), where its turning point sits, and whether it crosses the x-axis.
That last question is answered entirely by one number, the discriminant.
Drag c upward until the curve lifts clear of the x-axis. Watch D go negative at the exact moment the roots vanish.
Why the discriminant works
Look inside the square root: √(b² − 4ac). If that quantity is negative you are asking for the square root of a negative number, which has no real answer — so there is no real x where the curve touches zero.
If it is exactly zero the ± does nothing, both roots collapse into one, and the parabola kisses the axis at its vertex. If it is positive you get two genuinely different answers.
A matrix is a machine that moves space
Stop thinking of a matrix as a box of numbers. A 2×2 matrix is an instruction for rearranging the whole plane — stretch it, squash it, rotate it, shear it.
The instruction is written down in the simplest possible way: the columns tell you where the two basis arrows land. Column one is the new position of î (originally pointing one unit right). Column two is the new position of ĵ (originally one unit up). Everything else follows.
Set b to 0 and c to 0 — pure stretching. Now set a=0, b=−1, c=1, d=0 — a clean 90° rotation. The amber square is the unit square, and its area is the determinant.
The determinant is an area
The unit square has area 1. After the transformation it becomes a parallelogram. The determinant is simply how much the area got multiplied by.
A determinant of 3 means everything triples in area. A determinant of 0 means the plane has been flattened onto a line — information is destroyed, and the matrix has no inverse. A negative determinant means space got flipped over, like turning a page.
Order matters
Matrix multiplication is not commutative: AB ≠ BA in general. This is not a quirk of the notation — it is physically true. Rotate a book 90° then flip it, versus flip it then rotate 90°, and it ends up facing differently. Try it with an actual book.
Matrices: order, types, and what can be added to what
A matrix is a rectangular array of numbers. Its order is written rows × columns, so a matrix with 2 rows and 3 columns is of order 2 × 3, and an entry is named aij for the element in row i and column j.
Two matrices can be added only if they have the same order, and you simply add corresponding entries. Multiplication is different and stricter: A × B exists only when the number of columns of A equals the number of rows of B, and the result has the rows of A and the columns of B.
| Type | Meaning |
|---|---|
| Row matrix | one row only, order 1 × n |
| Column matrix | one column only, order m × 1 |
| Square matrix | equal numbers of rows and columns |
| Diagonal matrix | square, with every off-diagonal entry zero |
| Identity matrix I | diagonal, with 1 on the diagonal; AI = IA = A |
| Null matrix O | every entry zero |
| Transpose Aᵗ | rows and columns interchanged |
Matrix multiplication is not commutative
AB and BA are usually different, and one of them may not even exist. Never cancel matrices the way you cancel numbers, and never assume you may swap the order of a product — a large part of the marks in this chapter is for keeping the order as given.
Solving simultaneous equations with a matrix
Two linear equations can be written as a single matrix equation AX = B, where A holds the coefficients, X the unknowns and B the constants. There are then two standard routes to the solution, and the paper accepts either.
The inverse matrix method multiplies both sides by A⁻¹, giving X = A⁻¹B. Cramer's rule avoids the inverse: replace a column of A by B and take a ratio of determinants.
Solve 2x + 3y = 13 and x − y = 1 using Cramer's rule.
- Coefficient determinant
|A| = (2)(−1) − (3)(1) = −5.Non-zero, so a unique solution exists. - Replace the x column by the constants:
|Aₓ| = (13)(−1) − (3)(1) = −16. x = |Aₓ| / |A| = −16 / −5 = 3.2.Both determinants are negative, so the ratio is positive. A sign slip in either one shows up immediately as an answer that fails the check at the end.- Replace the y column:
|A_y| = (2)(1) − (13)(1) = −11, soy = −11/−5 = 2.2.Both values check in both original equations, which is the verification the mark scheme wants.
x = 3.2, y = 2.2
What a zero determinant is telling you
If |A| = 0 the matrix is singular and has no inverse, and Cramer's rule divides by zero. Geometrically the two lines are parallel or identical, so the system has either no solution or infinitely many — never exactly one. Stating that is the answer to the question, not a sign that you have gone wrong.