How this instrument works
Point-slope form is nothing more than the definition of slope, rearranged so y stands alone. Start from m = (y − y1) ⁄ (x − x1) — the ratio defining slope between a fixed point (x1, y1) and any other point (x, y) on the same line — then multiply both sides by (x − x1) to clear the fraction: y − y1 = m(x − x1). Every point-slope equation is that one rearrangement, nothing more.
The appeal is what it skips. Slope-intercept form, y = mx + b, needs a value for b before it can be written down, and finding b means substituting a point in and solving for an extra unknown. Point-slope form uses the known point directly as the anchor, so the equation exists the instant a slope and a single coordinate pair are known, with no intercept computed along the way.
The same line has infinitely many point-slope equations — one for every point chosen as (x1, y1) — and all of them expand to the identical slope-intercept line, so the form is not unique even though the line is. That flexibility is exactly what calculus reuses: a tangent line at a point on a curve is written in this same shape, y − y1 = f'(x1)(x − x1), with the derivative standing in for a slope that no longer comes from a second point at all.
- Enter the line's steepness into Slope, m — positive climbs left to right, negative falls.
- Enter the one point already known to sit on the line into Point: x₁ and Point: y₁.
- Enter the x-coordinate you want the line's height at into x (to evaluate at).
- Read y = m(x − x1) + y1 for the corresponding y-value, worked from your slope and point.
Worked example — slope 3 through (2, 5)
A line is known to climb with slope 3 and to pass through the point (2, 5). Point-slope form writes its equation on the spot, with no intercept to solve for first: y − 5 = 3(x − 2), which rearranges to y = 3(x − 2) + 5.
Evaluating at x = 4 answers the question directly: y = 3(4 − 2) + 5 = 3(2) + 5 = 6 + 5 = 11. Substituting the new pair back into the original equation confirms the arithmetic without ever solving for a y-intercept: 11 − 5 = 3(4 − 2) reduces to 6 = 6, so (4, 11) genuinely sits on the same line as (2, 5).
Questions
What does point-slope form actually represent?
It is the definition of slope rearranged so y stands alone: start from m = (y − y1) ⁄ (x − x1), multiply both sides by (x − x1), and y − y1 = m(x − x1) falls out. No new idea is added — it is the same ratio, solved for a different variable.
What separates this from solving a line through two points instead?
That calculation starts from two points and computes the slope as its first step, via m = (y2 − y1) ⁄ (x2 − x1). This instrument assumes the slope is already known and needs only one point, so it skips that subtraction entirely and goes straight to the equation.
Does it matter which point on the line I use as x1 and y1?
No. Any point on the line produces a valid point-slope equation, and every one of them expands to the identical slope-intercept line. The unexpanded equations look different depending on which point you pick, but they describe exactly the same line.
Why does this same shape reappear in calculus?
A tangent line to a curve at a point is written as y − y1 = f'(x1)(x − x1) — literally point-slope form, with the derivative supplying the slope instead of a second point. The secant-line slope formula becomes this exact equation as the second point merges into the first.
Where does arithmetic most often go wrong when using this by hand?
In mishandling a negative x1 or y1. If the known point is (−3, 4), the formula reads y − 4 = m(x − (−3)), which simplifies to y − 4 = m(x + 3) — dropping that sign flip is the error that trips up this formula more than any other, and it throws off every value computed afterward.
How do I convert this into slope-intercept form?
Distribute the m and shift the y1: y − y1 = m(x − x1) becomes y = mx − m·x1 + y1, so the constant term b equals y1 − m·x1. That combined figure is exactly the y-intercept a slope-intercept equation reports directly; point-slope form simply defers computing it until you choose to.