Scalar Multiples and Equation Equivalence
Two equations are equivalent if they have exactly the same solution set. One key way to produce an equivalent equation is to multiply both sides by a nonzero constant . For example, and (multiply by 3) describe identical lines.
This is not just algebra bookkeeping — it matters because Gaussian elimination relies on multiplying equations by scalars and adding them together. Knowing these operations preserve solutions is the entire justification for the algorithm.
Multiplying by zero is forbidden: is true for all and gives no information. Multiplying by a negative number is fine — it just flips the sign of every term.
Formal View
Why This Matters
This theorem is the theoretical backbone of Gaussian elimination.
- Row scaling in elimination algorithms is justified by this theorem
- Normalizing equations (e.g., making leading coefficient 1) preserves the solution set
- In numerical computing, row scaling improves numerical stability
Quiz
Multiplying an equation by changes its solution set.
Which equation is equivalent to ?
Common Mistakes
- Multiplying only the left-hand side by and forgetting the right-hand side.
- Multiplying by zero — this destroys all information and gives a trivially true .