Point Slope Form — Formula, Derivation, Examples

#Geometry
TL;DR
Point slope form writes the equation of a line as y − y₁ = m(x − x₁), where m is the slope and (x₁, y₁) is any known point on the line. This article covers the formula, its derivation straight from the slope definition, how to convert it to slope-intercept and standard form, six worked examples, and the sign mistakes students make most.
BT
Bhanzu TeamLast updated on June 25, 20269 min read

What Is Point Slope Form?

Point slope form is a way of writing the equation of a straight line using one point on the line and the line's slope. Its formula is:

$$y - y_1 = m(x - x_1)$$

The variable glossary:

  • $m$ — the slope of the line (its steepness and direction).

  • $(x_1, y_1)$ — the coordinates of a known point on the line.

  • $(x, y)$ — a generic point on the line; $x$ and $y$ stay as variables.

The form earns its name honestly: you plug in a point and a slope, and the equation is done. Unlike slope-intercept form $y = mx + b$, you do not need to know the y-intercept first — any point on the line will do. That makes point slope form the natural first equation to write when a problem hands you a point and a slope, or two points (from which you get the slope).

Where Does Point Slope Form Come From?

Point slope form is the slope formula, rearranged. Deriving it once shows that it is not a new rule to memorise — it is the definition of slope wearing different clothes.

Start with the slope between a fixed point $(x_1, y_1)$ and any other point $(x, y)$ on the same line:

$$m = \frac{y - y_1}{x - x_1}$$

The slope is the same no matter which other point you pick, so this holds for every $(x, y)$ on the line.

Multiply both sides by $(x - x_1)$ to clear the denominator:

$$m(x - x_1) = y - y_1$$

Swap the two sides to put it in the conventional order:

$$y - y_1 = m(x - x_1)$$

That is point slope form. It says the same thing as "the slope from the fixed point to any point is $m$" — just solved so the fraction is gone. Because finding the slope from two points is where $m$ usually comes from, the two ideas are directly linked.

How Do You Convert Point Slope Form To Other Forms?

Point slope form is rarely the final answer on its own; you usually distribute and rearrange it into a more familiar form.

To slope-intercept form ($y = mx + b$): distribute the slope, then isolate $y$.

To standard form ($Ax + By + C = 0$): distribute, then move every term to one side and clear fractions so the coefficients are integers.

The next examples show both conversions in full.

Examples of Point Slope Form

Example 1

Write the equation in point slope form for the line through $(2, 3)$ with slope $4$.

Identify $(x_1, y_1) = (2, 3)$ and $m = 4$.

Substitute into $y - y_1 = m(x - x_1)$:

$$y - 3 = 4(x - 2)$$

That is the equation in point slope form.

Example 2

Write the line through $(-1, 5)$ with slope $-2$ in point slope form.

Wrong path first. A student substitutes and writes $y - 5 = -2(x - (-1))$, then simplifies the inner part too hastily to $y - 5 = -2(x - 1)$, forgetting that subtracting a negative becomes addition. Check the point: with $x = -1$, the term $(x - x_1)$ should be $(-1) - (-1) = 0$ so the line passes through $(-1, 5)$. But $(x - 1)$ gives $(-1) - 1 = -2 \neq 0$, so that version misses the point.

Correct. Keep the double sign and simplify properly:

$$y - 5 = -2(x - (-1))$$

$$y - 5 = -2(x + 1)$$

Now $(x + 1)$ at $x = -1$ gives $0$, so the line passes through $(-1, 5)$. The flaw was mishandling the minus-of-a-negative; with a negative x-coordinate, $x - x_1$ becomes $x + |x_1|$.

Example 3

Convert $y - 3 = 4(x - 2)$ to slope-intercept form.

Distribute the $4$ on the right:

$$y - 3 = 4x - 8$$

Add $3$ to both sides to isolate $y$:

$$y = 4x - 8 + 3$$

$$y = 4x - 5$$

In slope-intercept form, the slope is $4$ and the y-intercept is $-5$.

Example 4

A line passes through $(0, 0)$ with slope $-3$. Write its equation in point slope form and simplify.

Substitute $(x_1, y_1) = (0, 0)$ and $m = -3$:

$$y - 0 = -3(x - 0)$$

Simplify:

$$y = -3x$$

When the known point is the origin, point slope form collapses neatly to $y = mx$.

Example 5

A line passes through $(1, -2)$ and $(3, 4)$. Write its equation in point slope form.

First find the slope from the two points:

$$m = \frac{4 - (-2)}{3 - 1} = \frac{6}{2} = 3$$

Now use either point. Taking $(1, -2)$:

$$y - (-2) = 3(x - 1)$$

$$y + 2 = 3(x - 1)$$

Using the other point, $(3, 4)$, would give $y - 4 = 3(x - 3)$ — a different-looking equation for the very same line.

Example 6

Convert $y + 2 = 3(x - 1)$ to standard form $Ax + By + C = 0$.

Distribute the $3$:

$$y + 2 = 3x - 3$$

Move all terms to one side:

$$0 = 3x - 3 - y - 2$$

Combine constants:

$$3x - y - 5 = 0$$

In standard form, $A = 3$, $B = -1$, $C = -5$.

[INTERACTIVE: A coordinate plane with one draggable point and a slope slider. As the user moves the point or changes the slope, the line redraws and the equation updates live in three synced rows: point slope form y − y1 = m(x − x1), slope-intercept form y = mx + b, and standard form Ax + By + C = 0, so the reader sees the same line in all three.]

Why Point Slope Form Matters

Point slope form looks like a detour to slope-intercept form, but it is the more fundamental tool, and it shows up wherever a line is defined by a point and a direction.

  • Speed and convenience. When a problem gives a point and a slope, point slope form is the equation in one substitution — no solving for $b$ first. Tangent-line problems, in particular, almost always start from a point and a slope.

  • Tangent lines in calculus. The derivative gives the slope of a curve at a specific point, and point slope form is exactly how you turn "slope $m$ at point $(x_1, y_1)$" into the equation of the tangent line. Students who are comfortable with point slope form find this step trivial.

  • Modelling from a data point and a rate. Any real situation with a starting value and a constant rate of change — a phone plan with a base point and a per-minute rate, a tank draining at a fixed rate from a known level — maps directly onto a point and a slope.

The reason point slope form is taught before students "need" it is that it makes the later work invisible: once it is automatic, building a line equation from a point and a slope stops being a step you think about.

Where Students Trip Up On Point Slope Form

Mistake 1: Dropping or flipping the negative signs

Where it slips in: Whenever the point has a negative coordinate, so $x - x_1$ or $y - y_1$ involves subtracting a negative.

Don't do this: Writing $y - 5 = m(x - 1)$ for a point with x-coordinate $-1$, instead of $x - (-1) = x + 1$.

The correct way: Substitute the coordinate exactly as it is, signs included, then simplify. For a point $(-1, 5)$, the form is $y - 5 = m(x + 1)$.

The first instinct is to "tidy up" the double sign in your head and lose track of it. The fix is mechanical — always write $x - x_1$ literally first, then resolve the signs on the next line, never both at once.

Mistake 2: Mixing up which coordinate is x₁ and which is y₁

Where it slips in: When a student substitutes the point's coordinates into the wrong slots.

Don't do this: Writing $y - 2 = m(x - 3)$ for the point $(2, 3)$, swapping the coordinates.

The correct way: The x-coordinate goes with $x_1$ (in the $x$ term) and the y-coordinate goes with $y_1$ (in the $y$ term). For $(2, 3)$: $y - 3 = m(x - 2)$. The memorizer who learned the formula as a string of symbols without anchoring x to x and y to y is the one who swaps them — labelling the point as $(x_1, y_1)$ before substituting prevents it.

Mistake 3: Treating two valid equations as a contradiction

Where it slips in: When two students use different points on the same line and get different-looking point slope equations.

Don't do this: Assuming one of them must be wrong because the equations don't match symbol-for-symbol.

The correct way: A line has a different point slope equation for every point on it — all equivalent. Simplify both to slope-intercept form to confirm they describe the same line. The silent understander who can solve but doubts the result often gets stuck here; converting to a common form resolves it.

Key Takeaways

  • Point slope form is $y - y_1 = m(x - x_1)$, built from one point and the slope.

  • It comes straight from the slope formula, rearranged to clear the fraction.

  • Use it when you know a point and a slope; convert to slope-intercept or standard form as needed.

  • Substitute coordinates literally, signs included, to avoid the negative-sign mistake.

  • Different points on the same line give different point slope equations that are all equivalent.

A Practical Next Step

Practice these problems to solidify your understanding. Write each in point slope form first, then convert to slope-intercept form:

  1. The line through $(4, 1)$ with slope $-3$.

  2. The line through $(-2, 0)$ with slope $\dfrac{1}{2}$.

  3. The line through $(1, 2)$ and $(5, 10)$.

If the negative signs keep catching you, work through the wrong-path example again and write each substitution on its own line. Want a live Bhanzu trainer to walk through more point slope problems? Book a free demo class.

Answer to Question 1: $y - 1 = -3(x - 4)$, i.e. $y = -3x + 13$.

Answer to Question 2: $y - 0 = \dfrac{1}{2}(x + 2)$, i.e. $y = \dfrac{1}{2}x + 1$.

Answer to Question 3: slope $2$, $y - 2 = 2(x - 1)$, i.e. $y = 2x$.

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is the point slope form formula?
$y - y_1 = m(x - x_1)$, where $m$ is the slope and $(x_1, y_1)$ is a known point on the line.
When should I use point slope form instead of slope-intercept form?
Use point slope form when you know a point and the slope but not the y-intercept. It is the faster route in that situation, and it converts to slope-intercept form in one or two steps.
How do I convert point slope form to y = mx + b?
Distribute the slope across the parentheses, then add or subtract to isolate $y$.
Can point slope form describe a vertical line?
No. A vertical line has an undefined slope, and point slope form needs a numerical $m$. Vertical lines are written $x = a$ instead.
Does it matter which point I use if I have two?
No. Any point on the line gives a valid point slope equation, and all of them simplify to the same line.
Is point slope form the same as the two-point form?
They are closely related — two-point form is point slope form with the slope already written as $\dfrac{y_2 - y_1}{x_2 - x_1}$. Once you compute the slope, the two are the same.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →