Courses / Business I
Mathematics I

Systems of Linear Equations

Business I 211 words Free to read

Many Equations, One Verdict

A system of linear equations is business modeling's native language, written compactly as Ax=bAx = b. Three fates govern every system, compared by the rank of AA, the augmented matrix (Ab)(A|b), and unknowns nn.

ComparisonVerdictGeometry
rank(A)=rank(Ab)=nrank(A) = rank(A|b) = nUnique solutionPlanes meet at one point
rank(A)=rank(Ab)<nrank(A) = rank(A|b) < nInfinitely manyOverlapping equations
rank(A)<rank(Ab)rank(A) < rank(A|b)No solutionParallel contradiction
Common pitfall: A zero row like 0=00 = 0 means redundancy (infinite solutions), while 0=c0 = c where c0c \ne 0 means no solution.
Two ranks and a ceiling at n, compared on one scale across three

Solving Methods

Gaussian elimination uses row operations (swapping, scaling, adding rows) to transform the matrix into triangular shape, then back-substitutes from the bottom up. Row operations preserve the exact solution set.

Cramer's rule solves square systems when detA0\det A \ne 0 via the formula:

xi=detAidetAx_i = \frac{\det A_i}{\det A}

Here, AiA_i is AA with column ii replaced by bb. It shines for 2×22 \times 2 and 3×33 \times 3 systems, but Gaussian elimination wins for anything larger.

The geometry to keep: last lesson's determinant is your early warning. detA0\det A \ne 0 guarantees the unique solution case immediately.

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

14practice questions
2interactive scenes

Mathematics I