From a point to a region
A single linear inequality like y ≥ x + 1 is not satisfied by one point but by half the plane — everything on or above the boundary line. A system of inequalities stacks several such conditions, and its solution set is the overlap of all the shaded halves, called the feasible region.
- Graph each boundary line. Use a solid line for ≤ or ≥ (boundary included) and a dashed line for < or > (boundary excluded).
- Pick a test point not on the line (often the origin). If it satisfies the inequality, shade its side; otherwise shade the other side.
- Repeat for every inequality, shading on the same diagram.
- The region covered by all the shadings at once is the feasible region.
Reading a break-even decision
Inequalities are how real constraints look: a budget, a capacity, a minimum order. When cost and revenue meet, you hit the break-even point — found by solving the related system of equations, the boundary case of the inequalities.
A stall: cost C = 40 + 2x, revenue R = 6x (x = items sold). Profit needs R >= C, i.e. 6x >= 40 + 2x. Break-even (boundary, R = C): 6x = 40 + 2x 4x = 40 x = 10 So the feasible region for profit is x >= 10. Selling 10 items breaks even; the 11th item is the first in profit. Check x = 12: R = 72, C = 64, profit = 8 > 0 ✓