Section I: Solving Linear Systems
Section I: Solving Linear Systems
🧭 Overview
🧠 One-sentence thesis
Gauss's Method systematically reduces linear systems to determine whether they have a unique solution, infinitely many solutions, or no solution, depending on whether contradictory equations appear and whether all variables lead rows.
📌 Key points (3–5)
- What Gauss's Method does: transforms a linear system through row operations into a simpler form that reveals the solution structure.
- Three possible outcomes: unique solution (every variable leads a row, no contradictions), infinitely many solutions (some variables don't lead rows, no contradictions), or no solution (contradictory equation appears).
- How to recognize each case: contradictory equation (e.g., 0 = -1) means no solution; variables not leading rows mean infinitely many solutions; otherwise, unique solution.
- Common confusion: a system with more unknowns than equations does not always have infinitely many solutions—it can still have no solution if contradictions arise.
- Row operations preserve solutions: operations like adding a multiple of one row to another do not change the solution set.
🔧 The Gauss's Method procedure
🔧 What row operations do
- Gauss's Method uses operations written as notation like "−(1/2)ρ₁ + ρ₂" (subtract half of row 1 from row 2) or "ρ₁ ↔ ρ₄" (swap rows 1 and 4).
- These operations transform the system step-by-step into a simpler form.
- The goal is to isolate variables and make the structure of solutions visible.
🔄 Back-substitution
- Once the system is reduced, solve for variables starting from the bottom row and working upward.
- Example: If the final form is "x + y + z = 5; −2y − z = −5; z = 4", first find z = 4, then substitute into the second equation to find y, then substitute both into the first to find x.
🧩 Recognizing solution types
✅ Unique solution
A system has a unique solution when there is no contradictory equation and every variable leads some row.
- "Every variable leads a row" means each variable appears as the first nonzero entry in at least one equation after reduction.
- Example: The system reduces to "x − z = 0; y + 3z = 1; −3z = 3" gives x = −1, y = 4, z = −1 as the only solution.
♾️ Infinitely many solutions
A system has infinitely many solutions when there is no contradictory equation but at least one variable does not lead any row.
- Variables that don't lead rows are called "free variables" and can take any value.
- Example: The system "x − 3y + z = 1; 4y + z = 13" has variable z not leading a row, so there are many solutions.
- Don't confuse: "many solutions" does not mean "all possible values work"—only certain combinations satisfy the equations.
❌ No solution
A system has no solution when a contradictory equation appears (an equation like 0 = k where k ≠ 0).
- Example: Reduction produces "−x − y = 1; 0 = −1", which is impossible, so no solution exists.
- A contradictory equation means the original equations are inconsistent.
🔍 More unknowns than equations
- The excerpt shows that a system with more unknowns than equations can still have no solution.
- Example: "x + y + z = 0; x + y + z = 1" has three unknowns and two equations, but the two equations contradict each other (the left sides are identical but the right sides differ).
🧮 Working with parameters
🧮 Systems depending on constants
- Some systems include parameters (like b₁, b₂, b₃) instead of specific numbers.
- Gauss's Method reveals conditions on the parameters for the system to be consistent.
- Example: After reduction, if the final rows are "0 = 2b₁ − b₂ + b₃" and "0 = b₁ − b₂ + b₄", the system is consistent if and only if both b₃ = −2b₁ + b₂ and b₄ = −b₁ + b₂.
🧮 Always consistent systems
- Some systems are consistent for any values of the parameters.
- Example: A system that reduces to three equations with three leading variables "always has a unique solution" regardless of the parameter values.
🔗 Relationships between equations
🔗 Linear combinations of rows
- One equation can be a linear combination of others (e.g., c₁ρ₁ + c₂ρ₂).
- To check if a given row is a combination, solve for the coefficients c₁, c₂, etc.
- Example: To see if "6x − 9y + 5z = −2" comes from "2x + y − z = 4" and "6x − 3y + z = 5", solve the system relating coefficients: 2c₁ + 6c₂ = 6, c₁ − 3c₂ = −9, etc.
🔗 Verifying solutions
- When using substitution methods (solving for one variable in terms of others), always substitute back into all original equations to verify.
- Example: If x = 1 − 3y is derived from one equation, check that it satisfies all other equations in the system.
📐 Special applications
📐 Trigonometric systems
- Systems can involve trigonometric functions by substituting variables.
- Example: Let x = sin α, y = cos β, z = tan γ, then solve the resulting linear system.
- Important: After finding numerical solutions, check whether they correspond to valid angles (e.g., sin α = 2 has no real solution because sine values must be between −1 and 1).
📐 Finding polynomial functions
- Given points that a polynomial must pass through, set up a system for the coefficients.
- Example: If f(1) = 2, f(−1) = 6, f(2) = 3 for f(x) = ax² + bx + c, the system is "a + b + c = 2; a − b + c = 6; 4a + 2b + c = 3". Solving gives f(x) = x² − 2x + 3.
📐 Chemical reactions
- The excerpt notes that chemical reactions can be modeled as linear systems.
- If a reaction occurs, there must be at least one nonzero solution, and any multiple of a solution is also a solution (representing the same reaction in different quantities).