Collinear Points: Definition, How to Prove & Examples

#Geometry
TL;DR
Collinear points are three or more points that all lie on the same straight line. This article covers the definition, collinear versus non-collinear points, the three methods to prove collinearity (slope equality, zero triangle area, and the distance test), how each one works, and six worked examples.
BT
Bhanzu TeamLast updated on June 7, 20269 min read

What Are Collinear Points?

Collinear points are a set of three or more points that all lie on the same straight line. The word splits into col- ("together") and -linear ("line"): points sitting together on one line. Any two points are trivially collinear, since a single straight line always passes through any pair, so the idea only becomes a real question once you have three or more.

The points do not need to be evenly spaced or close together. As long as one ruler laid on the page touches every point at once, they are collinear. Stretch them across a kilometre or bunch them in a centimetre; the only thing that matters is that no point strays off the line.

Collinear vs Non-Collinear Points

Points that do not all fall on one line are non-collinear points. Three non-collinear points are special: they are exactly what you need to define a triangle, and to fix a single flat plane. That connection runs deep, since the cleanest test for collinearity, coming up next, asks whether three points form a triangle at all.

  • Collinear: $(1, 1)$, $(2, 2)$, $(3, 3)$ all lie on the line $y = x$.

  • Non-collinear: $(0, 0)$, $(4, 0)$, $(0, 3)$ form a right triangle, so they bend away from any single line.

One quick note on a neighbouring word readers often mix in: collinear is about a line, while coplanar is about a plane. Collinear points are always coplanar (a line sits inside a plane), but coplanar points need not be collinear. Keep "line" tied to collinear.

How Do You Prove That Points Are Collinear?

There are three standard methods, and each one is really the same idea checked a different way: if the points were collinear, a certain "bend" measurement would come out to zero. Pick whichever fits the information you have.

Method 1: The Slope Test

This is the most-used method and the most intuitive. The slope of the segment between two points measures its steepness, the rise over the run:

$$m = \frac{y_2 - y_1}{x_2 - x_1}.$$

If three points $A$, $B$, $C$ lie on one straight line, then walking from $A$ to $B$ has the same steepness as walking from $B$ to $C$, because a straight line has one fixed slope everywhere. So the test is:

$$\text{slope of } AB = \text{slope of } BC.$$

When the two slopes match, there is no change in direction at $B$, no bend, and the three points are collinear. If the slopes differ, the path turns at $B$, and the points are non-collinear. (For a refresher on computing $m$, see Slope of a Line.)

Method 2: The Area-of-Triangle Test

Three non-collinear points form a triangle with some positive area. Three collinear points are squashed flat onto a line, so the "triangle" they would form has zero area. That gives a clean test using the coordinate area formula:

$$\text{Area} = \frac{1}{2},\lvert x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2) \rvert.$$

Plug in the three points. If the area equals $0$, the points are collinear; if it is anything positive, they form a real triangle and are non-collinear. This method is often the fastest by hand because it is one formula, with no need to compute and compare two separate slopes.

Method 3: The Distance Test

If three points lie on a line in the order $A$, $B$, $C$, then travelling $A$ to $B$ and then $B$ to $C$ covers exactly the same ground as going straight from $A$ to $C$:

$$AB + BC = AC.$$

Compute the three lengths with the distance formula, $d = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}$. If the two shorter lengths add up to the longest, the points are collinear; if the sum overshoots, the path bends and they are not. This test needs care about which point is in the middle, which is why slope and area are usually quicker.

Examples of Collinear Points

With the definition and the three tests in place, here is the concept doing real work. The problems run through each method, then push into a wrong-path slip and a parameter problem.

Example 1 - Are $P(1, 2)$, $Q(2, 3)$, and $R(3, 4)$ collinear? Use the slope test

Slope of $PQ = \dfrac{3 - 2}{2 - 1} = 1$. Slope of $QR = \dfrac{4 - 3}{3 - 2} = 1$. The slopes match, so there is no bend at $Q$.

Final answer: collinear.

Example 2 - Check whether $A(2, 3)$, $B(4, 7)$, and $C(6, 11)$ are collinear

A common first move is to compute the slope of $AB$, get $\dfrac{7 - 3}{4 - 2} = 2$, see "2" and stop, declaring the points collinear from one slope alone. Test that shortcut: a single slope only describes the segment $AB$; it says nothing about where $C$ sits. You must check a second segment that shares a point.

Done correctly: slope of $BC = \dfrac{11 - 7}{6 - 4} = \dfrac{4}{2} = 2$. Now both segments through $B$ have slope $2$, so the points are collinear.

Example 3 - Use the area test on $A(-3, -1)$, $B(-1, 0)$, $C(1, 1)$

$$\text{Area} = \tfrac{1}{2},\lvert (-3)(0 - 1) + (-1)(1 - (-1)) + (1)((-1) - 0) \rvert.$$

$$= \tfrac{1}{2},\lvert (-3)(-1) + (-1)(2) + (1)(-1) \rvert = \tfrac{1}{2},\lvert 3 - 2 - 1 \rvert = \tfrac{1}{2},\lvert 0 \rvert = 0.$$

The area is $0$, so no triangle forms.

Final answer: collinear.

Example 4 - Use the distance test on $A(1, 1)$, $B(2, 2)$, $C(4, 4)$

$AB = \sqrt{(2-1)^2 + (2-1)^2} = \sqrt{2}$. $BC = \sqrt{(4-2)^2 + (4-2)^2} = \sqrt{8} = 2\sqrt{2}$. $AC = \sqrt{(4-1)^2 + (4-1)^2} = \sqrt{18} = 3\sqrt{2}$.

Check: $AB + BC = \sqrt{2} + 2\sqrt{2} = 3\sqrt{2} = AC$. The two shorter pieces add to the longest.

Final answer: collinear.

Example 5 - Are $(0, 0)$, $(2, 1)$, and $(4, 3)$ collinear? Use the slope test

Slope of first pair $= \dfrac{1 - 0}{2 - 0} = \dfrac{1}{2}$. Slope of second pair $= \dfrac{3 - 1}{4 - 2} = \dfrac{2}{2} = 1$. The slopes differ, so the path bends.

Final answer: non-collinear.

Example 6 - Find the value of $k$ so that $(2, k)$, $(4, 8)$, and $(6, 12)$ are collinear

Use the slope test, setting the two slopes through $(4, 8)$ equal. Slope from $(2, k)$ to $(4, 8)$ is $\dfrac{8 - k}{4 - 2} = \dfrac{8 - k}{2}$. Slope from $(4, 8)$ to $(6, 12)$ is $\dfrac{12 - 8}{6 - 4} = \dfrac{4}{2} = 2$. Set them equal:

$$\frac{8 - k}{2} = 2 \ \Rightarrow\ 8 - k = 4 \ \Rightarrow\ k = 4.$$

Final answer: $k = 4$.

Where Collinearity Matters

Collinearity is the rule behind anything that has to line up straight, so it shows up wherever "is it aligned?" is a real question with consequences.

  • Surveying and construction. Setting out a straight road, fence, or pipeline means driving stakes that are collinear; one misplaced stake bends the route and wastes material.

  • Computer graphics and GPS. Mapping software simplifies a wiggly road into fewer points by deleting any point that is nearly collinear with its neighbours, since a near-zero triangle area means that point adds no real bend.

  • Astronomy. A syzygy is when the Sun, Earth, and Moon line up collinearly, the configuration that produces eclipses; predicting one is, at heart, predicting collinearity in space.

  • Physics and engineering. Forces acting along one line, or three pin-joints meant to sit in a straight strut, rely on collinearity to behave as designed; a strut whose joints drift off-line buckles under load.

The coordinate methods that let us test collinearity with slopes and areas trace back to RenΓ© Descartes and his 1637 union of algebra and geometry, the framework underneath every coordinate proof you will write.

Where Students Lose the Mark on Collinear Points

Mistake 1: Checking only one slope

Where it slips in: A student computes the slope of $AB$, likes the number, and declares all three points collinear.

Don't do this: Treat a single segment's slope as proof for a third point that segment never touched.

The correct way: Collinearity needs two segments that share a point to have equal slopes, slope $AB$ = slope $BC$. One slope only describes one segment.

Mistake 2: Forgetting the absolute value (or the $\tfrac{1}{2}$) in the area formula

Where it slips in: Using the area test, a student writes the area as a raw signed expression and misreads a negative as "not zero."

Don't do this: Skip the modulus bars and judge collinearity off a signed value.

The correct way: The collinearity test is whether the bracketed expression equals $0$; the $\tfrac{1}{2}$ and the absolute value affect the area's magnitude, not the zero-check. If the bracket is $0$, the points are collinear.

Mistake 3: Misordering points in the distance test

Where it slips in: A student adds the two distances from the endpoints to a middle point but picks the wrong point as the middle one.

Don't do this: Assume the order the points were listed in is the order they sit on the line.

The correct way: The longest of the three distances must be $AC$, the full span; the other two must add up to it. If no pairing gives "two short + longest," the points are non-collinear.

The Short Version

  • Collinear points are three or more points lying on a single straight line; any two points are always collinear.

  • The slope test checks that slope $AB$ = slope $BC$ (no bend at the shared point).

  • The area test checks that the triangle the points would form has zero area.

  • The distance test checks that the two shorter segments add up to the longest, $AB + BC = AC$.

  • Three non-collinear points instead define a triangle and fix one plane.

Work Through These Problems to Solidify Your Understanding

  1. Are $(1, 3)$, $(2, 5)$, and $(3, 7)$ collinear? Use the slope test.

  2. Use the area test on $(0, 0)$, $(1, 2)$, and $(2, 5)$.

  3. Find $k$ so that $(1, 2)$, $(3, k)$, and $(5, 10)$ are collinear.

Answer to Question 1: collinear; both slopes equal $2$. Answer to Question 2: non-collinear; the bracketed expression is $1 \neq 0$, so the area is positive. Answer to Question 3: $k = 6$, since equal slopes through $(3, k)$ give $\dfrac{k - 2}{2} = \dfrac{10 - k}{2}$. If Question 1 gave "non-collinear," recheck the slope subtraction order.

Want a live Bhanzu trainer to walk your child through collinearity proofs and coordinate geometry? Book a free demo class β€” online globally.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What are collinear points in geometry?
Three or more points that all lie on the same straight line. Any two points are automatically collinear, so the term is most useful for three or more.
How do you name collinear points?
By listing the points and stating the line they lie on, for example "points $A$, $B$, and $C$ are collinear on line $\ell$." On a diagram, the same straight line passing through all of them shows the relationship.
Are two points always collinear?
Yes. A single straight line can always be drawn through any two points, so any pair is collinear. Collinearity becomes a genuine question only with three or more points.
What are the collinear points in a triangle?
A triangle is formed by three non-collinear points, so a single triangle's three vertices are never collinear. Collinear points can appear among extra points placed along one of its sides, but the vertices themselves are not.
Can collinear points form a triangle?
No. Three collinear points are flattened onto a line, so the triangle they would form has zero area, which is exactly the area-test signal that they are collinear.
✍️ 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 β†’