Courses / Business I
Mathematics I

Systems of Linear Equations

Business I 351 words Free to read

Many Equations, One Verdict

A system of linear equations is business modeling's native language: production plans meeting capacity limits, budgets split across departments, markets clearing. In matrix form, all of it is one line:

Ax=bAx = b

Three possible fates (Rouché–Frobenius): compare the rank of AA with the rank of the augmented matrix (Ab)(A|b) and the number of unknowns nn:

Gaussian elimination is the workhorse: use row operations (swap rows, scale a row, add a multiple of one row to another) to sweep the matrix into a triangular shape, then back-substitute from the bottom up. Each row operation preserves the solution set — you are rewriting the story, not changing its ending.

Cramer's rule is the determinant shortcut for square systems with detA0\det A \ne 0:

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

where AiA_i is AA with column ii replaced by bb. Elegant for 2×22\times 2 and 3×33\times 3; Gaussian elimination wins for anything bigger.

The geometry to keep: two lines in a plane either cross once (unique), coincide (infinite), or run parallel (none). Every 1,000-variable production model ends in one of the same three fates — and last lesson's determinant is the early warning: detA0\det A \ne 0 guarantees the first, happiest case.

The Rouché–Frobenius verdicts

ComparisonVerdictGeometry
rank(A)=rank(Ab)=nrank(A) = rank(A \mid b) = nUnique solutionLines meet at one point
rank(A)=rank(Ab)<nrank(A) = rank(A \mid b) < nInfinitely manyEquations overlap
rank(A)<rank(Ab)rank(A) < rank(A \mid b)No solutionParallel — contradiction
Common pitfall: Declaring "no solution" the moment a row of zeros appears in elimination. A zero row of the form 0=00 = 0 signals redundancy (infinitely many solutions); only 0=c0 = c with c0c \ne 0 signals contradiction.

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
Start Business I free

Mathematics I