← Back to Overview
Contents
  1. Solving Linear Inequalities
  2. Graphing Inequalities
  3. Systems of Linear Equations
  4. Systems of Inequalities
  5. Linear Programming (Optimization)
  6. Common Mistakes
1 Solving Linear Inequalities

Solving inequalities is very similar to solving equations, with one critical difference:

⚠️
The Golden Rule: When you multiply or divide both sides by a negative number, you must reverse the inequality sign.

One-Variable Inequalities

Simple example
3x + 4 < 22 → 3x < 18 → x < 6
With negative division
−5x ≥ 5 → x ≤ −1 (sign flips because ÷ −5)
Double inequality
13 ≤ 2x − 5 ≤ 21 → 18 ≤ 2x ≤ 26 → 9 ≤ x ≤ 13
2 Graphing Linear Inequalities

One Variable (on number line)

Two Variables (on Cartesian plane)

✏️
Example: Graph y ≥ 2x + 1.
Draw solid line through (0,1) and (2,5).
Test (0,0): 0 ≥ 1 is false → shade AWAY from origin (the upper region).
3 Systems of Linear Equations (by graphing)

A system is two or more equations with the same unknowns. The solution is the ordered pair (x, y) that satisfies ALL equations simultaneously.

4 Systems of Inequalities

Graph each inequality separately. The solution is the region where all shaded areas overlap.

5 Linear Programming (Optimization)

Linear programming finds the maximum or minimum value of an objective function, subject to constraints (a system of inequalities).

📐
Fundamental theorem: The optimal value (max or min) of a linear objective function over a polygon of constraints always occurs at a vertex of the polygon.

Steps to Solve an Optimization Problem

Multiple Optimal Solutions

If two adjacent vertices give the same objective value, then every point on the edge between them is also optimal.

✏️
Example: Salon earns $20/haircut (x) and $30/colouring (y). Objective: Max = 20x + 30y.
Vertex A(3,2): $120 · B(3,8): $300 · C(8,3): $250
Maximum is $300 at B(3,8) → do 3 haircuts + 8 colourings.

Open vs Closed Vertices

If a vertex touches a dashed boundary line, it is NOT included in the solution set — it cannot be an optimal solution.

6 Common Mistakes
MistakeFix
Forgetting to flip inequality when dividing by negativeAlways check: did you divide or multiply by a negative? If yes, reverse the sign.
Wrong line type when graphing< or > → dashed (excluded). ≤ or ≥ → solid (included).
Wrong shading directionUse a test point! Substitute (0,0) and check which side satisfies the inequality.
Not finding ALL vertices of the polygonEvery intersection of two boundary lines is a potential vertex. Find them all.
Checking only some verticesYou MUST evaluate the objective function at ALL vertices — the maximum or minimum could be anywhere.