Systems of Linear Equations – Comprehensive Lecture Notes
Administrative & Procedural Announcements
- Register on the course e-class platform as soon as possible.
- Students who have arranged special transcription services should remain in the lecture hall after class for coordination.
- Familiarise yourself with the Socrative polling/quiz system; it will be used during lectures.
- A first (trial) online test will be released tomorrow – check the platform.
- Begin experimenting with Wolfram Alpha for symbolic/numeric calculations (it will greatly help with homework and demonstrations).
Motivating Warm-Up Problem
- Scenario (expressed in euros, but historically phrased in dollars in many versions):
• Phone + case cost a total of .
• Phone alone costs more than the case. - Let be the phone price and the case price.
• Equation system:
\begin{cases}
p + c = 110 \
p = c + 100
\end{cases}
• Substitution gives .
• Therefore . - Lesson: even an everyday story translates into two linear equations in two unknowns – the basic object of Linear Algebra.
Historical Milestones in Solving Linear Systems
- – Babylonians: explicit tables for linear systems.
- – Chinese “Nine Chapters”: an early elimination technique (precursor of Gaussian elimination).
- – Girolamo Cardano (Italy): primitive determinant-like rule later formalised by Cramer.
- – Takakazu Seki (Japan) and G. W. Leibniz (Germany): independent conception of determinants.
- – Gabriel Cramer (Switzerland): Cramer’s Rule.
- – Carl F. Gauss (Germany): systematic row elimination algorithm.
- – Emmy Noether (USA/Germany): abstraction to vector spaces, modern axiomatic framework.
Core Definitions & Concepts
Linear Equation in Variables
- Standard algebraic form:
where (or ) are known constants.
System of Linear Equations
- A collection of such equations that share the same variables .
- Example prototype (three equations, three unknowns):
\begin{cases}
a{11}x1 + a{12}x2 + a{13}x3 = b1 \ a{21}x1 + a{22}x2 + a{23}x3 = b2 \
a{31}x1 + a{32}x2 + a{33}x3 = b_3
\end{cases}
Solution & Solution Set
- A solution is an ordered list that simultaneously satisfies every equation.
- The set of all such ordered lists is the solution set.
Equivalence of Systems
- Two systems are equivalent if they possess exactly the same solution set.
Consistency Classification
- Exactly one of the following is true for any system:
- No solution – system is inconsistent.
- One unique solution – system is consistent.
- Infinitely many solutions – system is consistent.
Matrix Representation
Coefficient Matrix
- Collects only the numbers in an rectangular array.
Augmented Matrix
- Appends the constants as an extra right-most column:
Dimension / Size Notation
- “” means m rows and n columns (rows cited first).
Elementary Row Operations (EROs)
- Replacement (type R1): .
- Interchange (type R2): swap rows and .
- Scaling (type R3): .
- Properties
• Each operation is invertible.
• Two matrices are row-equivalent if one can be transformed into the other via a finite ERO sequence.
• Row-equivalent augmented matrices represent equivalent linear systems ➜ identical solution sets.
Fundamental Questions for Any System
- Does at least one solution exist? (Consistency)
- If yes, is that solution unique?
Algorithmic Strategy
- Replace the original system by a row-equivalent one that is easier to interpret:
• Triangular form (forward elimination) for back-substitution.
• Row-Echelon Form (REF) or the stricter Reduced Row-Echelon Form (RREF) for direct reading of solutions.
Example 1 ▸ Unique Solution via Gaussian Elimination
Original (implicit) system labelled (1)–(3) eventually produces the solution Key steps:
- Pivot choice: Use in equation (1) as first pivot.
- Eliminate from equations (2) and (3) using R1 operations.
- Scale a middle row to obtain a unit pivot for .
- Eliminate from other rows.
- Achieve triangular (upper-triangular) system.
- Back-substitution:
\begin{aligned}
4x2 &= 12 &\Rightarrow&\; x2 = 3 \
x3 &= 0 \ x1 &= 2x2 + x3 = 6 \Rightarrow x_1 = 29 \text{ (after all numeric updates)}
\end{aligned} - Verification: Substituting into each original equation returns the stated right-hand sides, confirming correctness.
(Slide snapshots contained arithmetic misalignments; the bullet list captures only the clean logical flow.)
Example 2 ▸ Detecting Inconsistency
System labelled (4) is converted by EROs to a triangular augmented matrix that reads, in equation form,
- The statement is a contradiction, therefore no triple can satisfy the system.
- Conclusion: the system is inconsistent (solution set = ∅).
Additional Practice Examples (Slide 25)
The slide lists several 3-variable equations and candidate triples such as , etc. Suggested exercise routine:
- Substitute each candidate triple into every equation.
- Confirm whether it satisfies all; if one equation fails, the triple is not a solution.
- Attempt EROs to classify each system as in the previous examples.
Software Aids Mentioned
- Socrative ➜ in-class polling, concept checks.
- Wolfram Alpha ➜ symbolic row reduction command:
RowReduce[{{…}}]orSolve[{…},{x,y,z}].
Key Takeaways & Exam Tips
- Every linear modelling story (prices, mixtures, currents, forces) translates to .
- Matrices and EROs compress repetitive algebra while guaranteeing equivalence.
- Gaussian elimination = algorithmic backbone for existence/uniqueness determination.
- Know the three ERO types and be able to reverse any step.
- Contradictory rows (e.g., ) signal inconsistency instantly.
- A row of all zeros including the augmented part (e.g., ) signals a dependent equation ➜ possible infinite solutions if enough free variables remain.
- Always perform a quick solution check – arithmetic slips are common under exam pressure.