Intuition The one core idea
A graph is a set of dots on grid paper, and each dot has an address made of two numbers. An intercept is just the special dot where your line steps onto one of the two main roads (the axes) — and stepping onto a road forces one of the two address-numbers to become 0 . Master "address = two numbers" and "on a road, one number is zero" and the whole topic falls out.
This page assumes nothing . We build every symbol the parent Intercepts note used, one brick at a time, in the order they depend on each other.
Definition The plane and its two rulers
The coordinate plane is a flat sheet with two number-rulers laid across it. The flat, left-right ruler is the x-axis . The upright, up-down ruler is the y-axis . They cross at one special point called the origin .
Look at the figure. The two coloured lines are the rulers. Where they meet — the little dark dot — is the origin.
Intuition Why two rulers and not one?
One ruler can only say "how far left/right". To pin down any spot on a flat sheet you also need "how far up/down". Two independent directions ⇒ two numbers ⇒ every spot gets a unique name. This is exactly why an "address" below has two numbers.
Prerequisite depth on this lives in Distance & Coordinates on the Cartesian Plane .
x and y
x is a stand-in for how far sideways a point is: positive means right of the origin, negative means left. y is a stand-in for how far up/down : positive means above the origin, negative means below.
They are letters holding a spot for a number — like a labelled box you drop a value into. When we later "set y = 0 ", we are saying "put the number zero into the up/down box".
x is always horizontal on every graph"
Why it feels right: in this chapter x is horizontal. Why to stay careful: x and y are just names we agreed on ; the meaning comes from which ruler each labels, not the letter itself. Always read which axis carries which letter before trusting a formula.
Definition An ordered pair
An ordered pair ( x , y ) is the address of one dot: the first number is its sideways position, the second is its up/down position. "Ordered" means the order matters — ( 6 , 0 ) and ( 0 , 6 ) are different dots.
The figure shows how to read a dot: walk along the flat ruler by the first number, then climb by the second.
Intuition Why the order can't be swapped
( 6 , 0 ) says "6 right, 0 up" — a dot on the flat road. ( 0 , 6 ) says "0 right, 6 up" — a dot on the upright road. Swapping puts the dot in a totally different place, so the comma-order is not decoration; it is the address's grammar.
This single fact is the engine of the whole topic.
Intuition Stepping onto a road
To stand on the x-axis you must have climbed nothing up or down — so your up/down number is y = 0 . To stand on the y-axis you must have walked nothing sideways — so your sideways number is x = 0 .
The figure makes it visible: every dot sitting on the flat road has a "0" in its up/down slot; every dot on the upright road has a "0" in its sideways slot.
Definition Equation of a line
An equation like A x + B y = C is a membership test : plug a dot's address ( x , y ) in; if the two sides come out equal, that dot is on the line; if not, it is off the line. Here A , B , C are fixed numbers (constants) chosen once for that particular line.
Intuition Why an equation "is" a line
There are infinitely many dots that pass the test, and — for a first-degree equation like this — they all lie in a single straight row. So the equation is a compact rulebook that lists every dot of the line at once . Deeper background: General Equation of a Line (Ax + By = C) .
Worked example The membership test in action
Line 2 x + 3 y = 12 . Test the dot ( 6 , 0 ) : left side = 2 ( 6 ) + 3 ( 0 ) = 12 , right side = 12 . Equal ⇒ ( 6 , 0 ) is on the line. Test ( 1 , 1 ) : 2 ( 1 ) + 3 ( 1 ) = 5 = 12 ⇒ off the line.
Definition Edge cases: when
A or B is 0
The letters A , B , C are just chosen numbers, so we must ask what happens at their extremes.
If A = 0 (so B y = C ): x has vanished from the rulebook, meaning x is free to be anything while y is pinned. That draws a horizontal line at height y = B C .
If B = 0 (so A x = C ): now y is free and x is pinned — a vertical line at x = A C .
If A = 0 and B = 0 together: the equation collapses to 0 = C . If C = 0 this is false for every dot (no line at all); if C = 0 it is true for every dot (the whole plane). Neither is a proper line, which is why the parent note assumes A , B , C = 0 .
Definition Solving for a variable
To ==solve for x == means: rearrange an equation until x stands alone on one side, so you can read off its value. It's just undoing the operations wrapped around x , in reverse.
Watch how the earlier fact and the membership test combine:
The parent note calls the surviving number the intercept . That word is defined fully there — here we just made sure every symbol inside it (x, y, = 0, "solve") already meant something to you.
Definition A fraction as "share out"
A C means "cut the amount C into A equal parts, take one part". It answers "what number, multiplied by A , gives C ?" — that is why solving A x = C hands you x = A C .
Common mistake Dividing by zero
0 C has no answer — there is no number you can multiply by 0 to get a nonzero C . This is exactly why the parent note bans intercept form for a line through the origin: both intercepts would be 0 and you'd write 0 x . Keep the mantra: denominators must never be zero .
x 2 and a root
x 2 means x × x . An equation like y = x 2 − 5 x + 6 is again a membership test, but its dots bend into a U-shaped curve. A root is an x that makes the whole thing equal zero — and because "y = 0 " is "on the x-axis", the roots are exactly the x-axis crossings .
Definition Function notation
f ( x )
When y is computed from x by a fixed recipe, we give the recipe a name — say f — and write f ( x ) , read "f of x ", meaning "the output the recipe f produces from the input x ". So writing y = x 2 − 5 x + 6 and f ( x ) = x 2 − 5 x + 6 say the same thing : f ( x ) is just another name for the height y . Then "a root of f ( x ) " means an x making f ( x ) = 0 , i.e. making y = 0 — a crossing of the x-axis.
Full toolkit for finding those roots: Roots of a Quadratic . The link "roots = x-intercepts" is what lets the parent solve y = x 2 − 5 x + 6 .
m and c stand for
In the line y = m x + c , the number ==m is the slope== — how many steps y climbs for each single step x takes to the right (its steepness). The number ==c is the y-intercept== — the starting height of the line when x = 0 . Both are fixed numbers picked once for that line.
c is already a y-intercept
Set x = 0 (stand on the y-axis): y = m ( 0 ) + c = c , because m times 0 is 0 no matter how steep the line is. So c is the height where the line meets the upright road — no extra work needed. This is the bridge to Slope-Intercept Form (y = mx + c) , and it is why plotting via intercepts (see Graphing Straight Lines ) is so fast.
Read the chain like a supply line: each idea below hands the next one a tool it cannot work without. The coordinate plane gives us two rulers; those rulers name the symbols x , y ; the pair ( x , y ) becomes an address; the address makes "on a road ⇒ other number is zero" precise; an equation is the membership test we then set a variable to zero inside and solve (using fractions , careful never to divide by zero); the root ⇒ crossing idea extends all of this from lines to curves. Together they deliver the topic: intercepts .
Coordinate plane two rulers
On a road other number is zero
Equation is a membership test
Set a variable to zero and solve
Fractions and no divide by zero
Roots equal x axis crossings
What are the two rulers of the coordinate plane called? The x-axis (flat, left-right) and the y-axis (up-down).
In the address ( x , y ) , which number comes first? x , the sideways amount; then y , the up/down amount.
If a dot sits on the x-axis, what must its y value be? 0 .
If a dot sits on the y-axis, what must its x value be? 0 .
What does the equation 2 x + 3 y = 12 do with a dot you plug in? Tests membership — equal sides means the dot is on the line, unequal means off it.
What kind of line is A x + B y = C when A = 0 ? A horizontal line at height y = C / B (x is free).
What kind of line is A x + B y = C when B = 0 ? A vertical line at x = C / A (y is free).
When peeling x out of 2 x = 12 , what operation isolates x ? Divide both sides by 2 , giving x = 6 .
What does A C ask? "What number times A gives C ?"
Why is 0 C forbidden? No number times 0 can give a nonzero C , so it has no value.
What does the notation f ( x ) mean? "f of x " — the output a named recipe f produces from input x ; it is just another name for the height y .
Geometrically, what is a root of f ( x ) ? An x where f ( x ) = 0 , i.e. where the curve crosses the x-axis (y = 0 ).
In y = m x + c , what do m and c mean? m is the slope (steepness) and c is the y-intercept (height at x = 0 ).