Intuition What this page is
The parent note taught the rule : to touch a road, set the OTHER direction to zero. Here we stress-test that rule against every kind of line and curve you could meet — positive and negative intercepts, the tricky origin case, the "no intercept" degenerate cases, a curve that never touches an axis, a real-world word problem, and an exam twist. If a scenario exists, it has a worked example below.
Before we start, one word we will lean on: an intercept is the spot where a graph crosses an axis . On the flat x-axis every point has "up amount" y = 0 . On the up-down y-axis every point has "sideways amount" x = 0 . That is the whole engine.
Every problem this topic throws lives in one of these cells. The right column names the example that clears it.
#
Case class
What makes it different
Cleared by
A
Both intercepts positive
vanilla line, both crossings in the "nice" region
Example 1
B
A negative intercept
a sign flips — where does the crossing move?
Example 2
C
Line through the origin
both intercepts collapse to ( 0 , 0 ) — degenerate
Example 3
D
Horizontal line y = k
no x-intercept (unless k = 0 )
Example 4
E
Vertical line x = h
no y-intercept (unless h = 0 )
Example 4
F
Curve: parabola, two x-intercepts
roots = crossings, all signs
Example 5
G
Curve with no x-intercept
discriminant < 0 : it floats above the axis
Example 6
H
Read intercepts backwards to build the equation
given crossings, find the line
Example 7
I
Real-world word problem
intercepts carry units and meaning
Example 8
J
Exam twist — intercept depends on a parameter
solve for the value that forces a crossing
Example 9
The figures below show cells A, B, C, D/E, F, G so you can see every case.
Worked example Example 1 — the line
3 x + 4 y = 24
Forecast: before computing — will both crossings sit on the positive side of each axis? Jot a guess.
Step 1. x-intercept: set y = 0 , giving 3 x = 24 ⟹ x = 8 . Point ( 8 , 0 ) .
Why this step? On the x-axis y = 0 , so the 4 y term vanishes and only x survives — the cheapest way to isolate x .
Step 2. y-intercept: set x = 0 , giving 4 y = 24 ⟹ y = 6 . Point ( 0 , 6 ) .
Why this step? On the y-axis x = 0 , so the 3 x term dies.
Verify: plug both points back. ( 8 , 0 ) : 3 ( 8 ) + 4 ( 0 ) = 24 ✓. ( 0 , 6 ) : 3 ( 0 ) + 4 ( 6 ) = 24 ✓. Both positive, as forecast — see the blue line in the figure.
Link back to why this is the fast route: Graphing Straight Lines — two intercepts already give you the whole line.
Worked example Example 2 — the line
2 x − 5 y = 10
Forecast: the minus sign in front of 5 y — does it push a crossing below the axis, or is it the sign of C that matters? Guess which intercept goes negative.
Step 1. x-intercept: set y = 0 : 2 x = 10 ⟹ x = 5 . Point ( 5 , 0 ) .
Why this step? Same rule — kill y . The sign of the y -coefficient is irrelevant here because y is already zero.
Step 2. y-intercept: set x = 0 : − 5 y = 10 ⟹ y = − 2 . Point ( 0 , − 2 ) .
Why this step? Kill x . Now the − 5 does bite: dividing 10 by − 5 gives a negative y , so the line crosses the y-axis below the origin.
Verify: ( 5 , 0 ) : 2 ( 5 ) − 5 ( 0 ) = 10 ✓. ( 0 , − 2 ) : 2 ( 0 ) − 5 ( − 2 ) = 10 ✓. Orange line in the figure dips below the x-axis on the left — exactly a negative y-intercept.
Common mistake The sign trap
Wrong instinct: "the minus in − 5 y makes the x-intercept negative." Why wrong: the x-intercept is found by setting y = 0 , which erases that whole term — the coefficient of y can never touch the x-intercept. Fix: each intercept is controlled only by the OTHER variable's coefficient and C .
Worked example Example 3 — the line
y = 2 x
Forecast: what happens when you try intercept form a x + b y = 1 here? Predict before reading.
Step 1. x-intercept: set y = 0 : 0 = 2 x ⟹ x = 0 . Point ( 0 , 0 ) .
Why this step? Standard rule — but the answer is the origin itself.
Step 2. y-intercept: set x = 0 : y = 2 ( 0 ) = 0 . Point ( 0 , 0 ) again.
Why this step? Same rule; both crossings land on the same point, the origin.
Step 3. So a = 0 and b = 0 . Intercept form would need 0 x + 0 y = 1 — division by zero . The intercept form is forbidden here.
Why this step? This is the degenerate case: a line through the origin has its two crossings fused into one, so there are no two distinct axis points to build intercept form from. Use Slope-Intercept Form (y = mx + c) with c = 0 instead, i.e. just y = 2 x .
Verify: the only common point of y = 2 x with either axis is ( 0 , 0 ) (green line through the origin in the figure). Setting y = 0 and x = 0 both return the origin — consistent.
Worked example Example 4 — the lines
y = 3 (horizontal) and x = − 4 (vertical)
Forecast: a flat line y = 3 never bends toward the x-axis. Does it have an x-intercept at all? Guess yes/no for each.
Step 1 (line y = 3 ). y-intercept: set x = 0 : y = 3 regardless, so point ( 0 , 3 ) . ✓ has one.
Why this step? y = 3 means "always 3 high"; at x = 0 that is the point ( 0 , 3 ) .
Step 2 (line y = 3 ). x-intercept: set y = 0 : we'd need 3 = 0 , which is false . No solution ⇒ no x-intercept .
Why this step? A horizontal line at height 3 stays 3 above the x-axis forever; it is parallel to that axis, so they never meet.
Step 3 (line x = − 4 ). x-intercept: set y = 0 : point ( − 4 , 0 ) . ✓ has one (a negative one).
Why this step? x = − 4 is a wall 4 units left; it crosses the flat x-axis at height 0 , i.e. ( − 4 , 0 ) .
Step 4 (line x = − 4 ). y-intercept: set x = 0 : we'd need 0 = − 4 , false . No y-intercept.
Why this step? This vertical wall is parallel to the y-axis, so it never touches it.
Verify: the red horizontal and gray vertical lines in the figure each pierce exactly ONE axis. Edge fact: only if k = 0 (line y = 0 , the x-axis itself) or h = 0 (line x = 0 , the y-axis itself) does the line lie along an axis, giving infinitely many intercepts.
Worked example Example 5 — the curve
y = x 2 + x − 6
Forecast: how many times can a ∪ -shaped parabola cross the x-axis? Guess 0, 1, or 2, and whether the crossings can straddle the origin.
Step 1. x-intercepts: set y = 0 : x 2 + x − 6 = 0 . Factor: ( x + 3 ) ( x − 2 ) = 0 ⟹ x = − 3 or x = 2 . Points ( − 3 , 0 ) and ( 2 , 0 ) .
Why this step? The x-crossings are exactly the real roots of f ( x ) = 0 — that is what a root means geometrically. See Roots of a Quadratic . Note one crossing is negative, one positive.
Step 2. y-intercept: set x = 0 : y = 0 + 0 − 6 = − 6 . Point ( 0 , − 6 ) .
Why this step? Just plug x = 0 ; the constant term of a polynomial is always its y-intercept.
Verify: plug x = − 3 : 9 − 3 − 6 = 0 ✓. Plug x = 2 : 4 + 2 − 6 = 0 ✓. Plug x = 0 : − 6 ✓. The parabola in the figure dips below the axis between x = − 3 and x = 2 and cuts it at both.
Worked example Example 6 — the curve
y = x 2 + 4
Forecast: this parabola's lowest point is at y = 4 . Can it ever reach the x-axis (y = 0 )? Guess before solving.
Step 1. x-intercepts: set y = 0 : x 2 + 4 = 0 ⟹ x 2 = − 4 . No real x squares to a negative number, so no x-intercept .
Why this step? Squaring any real number gives ≥ 0 , so x 2 can never equal − 4 . The quadratic's discriminant is 0 2 − 4 ( 1 ) ( 4 ) = − 16 < 0 , the algebraic signal for "no real roots" (see Roots of a Quadratic ).
Step 2. y-intercept: set x = 0 : y = 0 + 4 = 4 . Point ( 0 , 4 ) .
Why this step? Constant term = y-intercept, as always.
Verify: the smallest value of x 2 + 4 is 4 (at x = 0 ), so the whole curve floats at least 4 above the x-axis — it never touches it. The purple curve in the figure sits entirely above the axis. A curve can miss an axis entirely; a line (non-horizontal, non-vertical) never can.
Worked example Example 7 — build the line with x-intercept
− 3 and y-intercept 5
Forecast: you are handed the two crossings. Which form plugs in fastest — y = m x + c or intercept form? Guess.
Step 1. Both intercepts are nonzero, so intercept form is legal. With a = − 3 , b = 5 : − 3 x + 5 y = 1 .
Why this step? Intercept form a x + b y = 1 takes the crossings directly as inputs — no solving needed.
Step 2. Clear denominators — multiply through by 15 (the LCM of 3 and 5 ): − 5 x + 3 y = 15 .
Why this step? To land in the tidy General Equation of a Line (Ax + By = C) form with integer coefficients.
Verify: set y = 0 : − 5 x = 15 ⟹ x = − 3 ✓. Set x = 0 : 3 y = 15 ⟹ y = 5 ✓. Both target intercepts recovered.
Worked example Example 8 — draining a water tank
A tank holds water V (litres) after t minutes, modelled by V = 200 − 8 t .
Find (a) the starting amount and (b) the time it empties. Forecast: which intercept is "start" and which is "empty"?
Step 1. The "V -intercept" (vertical axis is V ): set t = 0 : V = 200 − 0 = 200 litres.
Why this step? t = 0 is the start; setting the horizontal variable to zero gives the crossing on the V -axis — the initial volume , 200 L.
Step 2. The "t -intercept" (horizontal axis is t ): set V = 0 : 0 = 200 − 8 t ⟹ 8 t = 200 ⟹ t = 25 minutes.
Why this step? V = 0 means the tank is empty; the crossing on the t -axis tells us when . The tank drains after 25 minutes.
Verify: at t = 25 : V = 200 − 8 ( 25 ) = 200 − 200 = 0 ✓. Units check: 8 L/min × 25 min = 200 L removed = the full tank ✓. Only 0 ≤ t ≤ 25 is physically meaningful (you can't have negative water or run time backwards).
Worked example Example 9 — find
k so the line passes through a required crossing
The line k x + 3 y = 12 must have an x-intercept of 2 . Find k , then state the y-intercept.
Forecast: does the y-intercept depend on k ? Guess before working.
Step 1. x-intercept means set y = 0 : k x = 12 , and we're told that crossing is at x = 2 , so k ( 2 ) = 12 ⟹ k = 6 .
Why this step? "x-intercept is 2 " is the fact "( 2 , 0 ) lies on the line" — substitute it and the only unknown left is k .
Step 2. y-intercept: set x = 0 : 3 y = 12 ⟹ y = 4 . Point ( 0 , 4 ) .
Why this step? Setting x = 0 erases the k x term entirely — so the y-intercept is 4 whatever k is . (That answers the forecast: no, it does not depend on k .)
Verify: with k = 6 the line is 6 x + 3 y = 12 . Check ( 2 , 0 ) : 6 ( 2 ) + 3 ( 0 ) = 12 ✓. Check ( 0 , 4 ) : 6 ( 0 ) + 3 ( 4 ) = 12 ✓.
Recall Which cell has NO x-intercept, and why?
Cells D and G. A horizontal line y = k (k = 0 ) is parallel to the x-axis, and x 2 + 4 = 0 has no real root — both never reach y = 0 .
Set y = 0 to find which intercept? the x-intercept.
For 2 x − 5 y = 10 , the y-intercept is? − 2 , point ( 0 , − 2 ) .
Why can't y = 2 x use intercept form? both intercepts are 0 , so a x + b y divides by zero.
Does the line y = 3 have an x-intercept? No — it is parallel to the x-axis.
x-intercepts of y = x 2 + x − 6 ? x = − 3 and x = 2 .
How many x-intercepts does y = x 2 + 4 have? Zero — its discriminant − 16 < 0 .
For k x + 3 y = 12 , does the y-intercept depend on k ? No — it is 4 for every k .
Mnemonic One line to rule them all
"To touch a road, zero the OTHER direction — then check the answer is real ." The second half catches Cells D, E, G where the crossing simply doesn't exist.
2.3.07 Intercepts — x-intercept, y-intercept (Hinglish) — parent topic, Hinglish version.
General Equation of a Line (Ax + By = C) — the form Examples 1, 2, 7, 9 live in.
Slope-Intercept Form (y = mx + c) — used for the origin line in Example 3.
Roots of a Quadratic — the engine behind Cells F and G.
Graphing Straight Lines — every example's payoff: two points, done.
Distance & Coordinates on the Cartesian Plane — why "on an axis" forces a coordinate to 0 .
Horizontal or vertical - Ex4
Build from intercepts - Ex7