What Is Collinear in Geometry? Definition & Examples

In geometry, collinear means that three or more points lie on the same straight line. The word comes from the Latin “com” (together) and “linea” (line). It’s one of the most fundamental spatial relationships in mathematics, and it comes up constantly in coordinate geometry, proofs, and real-world applications like surveying and mapping.

Two points are always collinear, since any two points automatically define a line. The concept only becomes meaningful with three or more points, because that’s where the question arises: do these points actually share a single line, or not?

What Collinear Points Look Like

Imagine drawing a straight line on a piece of paper and placing dots anywhere along it. Every one of those dots is collinear with every other dot on that line. Now place a dot slightly off the line. That dot is non-collinear with the others, because no single straight line passes through all of them.

Three non-collinear points form a triangle. This is actually part of the formal definition of a triangle in geometry: you need three points that do not all sit on the same line. If they did sit on the same line, you’d just have a line segment, not a shape with area. So collinearity is really the dividing line between “flat” arrangements of points and ones that create two-dimensional figures.

How to Test if Points Are Collinear

There are three common ways to check whether three points share a line. Each uses a different mathematical tool, but they all answer the same question.

The Slope Method

This is the most intuitive approach. Pick any two pairs of points and calculate the slope between each pair. If the slopes are equal, the points are collinear. For example, given points A, B, and C, find the slope from A to B and the slope from B to C. If those two numbers match, all three points sit on the same line. This works because a straight line has a constant slope everywhere along it.

The Triangle Area Method

Three collinear points can’t form a triangle, because they don’t enclose any area. So if you plug three points into the formula for the area of a triangle and the result equals zero, the points are collinear. For points with coordinates (x₁, y₁), (x₂, y₂), and (x₃, y₃), the formula is:

Area = ½ |x₁(y₂ − y₃) + x₂(y₃ − y₁) + x₃(y₁ − y₂)|

If that expression equals zero, the three points are collinear. This method is especially useful in coordinate geometry problems because it works cleanly with any set of coordinates.

The Distance Method

Calculate the distance between all three pairs of points. If the two shorter distances add up exactly to the longest distance, the points are collinear. In other words, if points A, B, and C sit on a line with B between A and C, then the distance from A to B plus the distance from B to C equals the distance from A to C. Any deviation from that equality means the points form a triangle rather than a line.

Collinearity in Three Dimensions

All three methods above work on a flat plane, but collinearity applies in 3D space too. Three points in space are collinear if they share a single straight line, even if that line angles through all three dimensions. The slope method doesn’t translate directly to 3D (since slopes are defined for flat planes), but two alternative approaches work well.

The first is the vector cross product method. If you create two vectors from the three points and their cross product equals zero, the points are collinear. A cross product of zero means the vectors point in the same (or exactly opposite) direction, which is another way of saying the points all fall along one line.

The second is the distance method described above, which works identically in 3D. If the sum of two shorter segment lengths equals the third, the three points are collinear regardless of how many dimensions you’re working in.

Collinear vs. Coplanar

Collinear and coplanar are related but describe different things. Collinear means points share a line. Coplanar means points share a flat plane. The key relationship: collinear points are always coplanar, because any line sits within a plane. But coplanar points are not necessarily collinear. Four points could all lie on the same tabletop (coplanar) without lining up in a row (collinear).

Think of it as a hierarchy. Collinearity is a stricter condition than coplanarity. Every set of collinear points passes the coplanar test automatically, but most coplanar point sets fail the collinear test.

Where Collinearity Matters

Collinearity shows up throughout geometry and its applications. In proofs and theorems, establishing that certain points are collinear (or not) is often a critical step. Several classical results in geometry are specifically about proving unexpected collinearity, such as Euler’s line, which shows that three important centers of any triangle always fall on the same straight line.

Outside of pure math, collinearity plays a role in land surveying, where determining whether measured points align helps verify boundaries and sight lines. It’s also central to photogrammetry, the science of making measurements from photographs. The collinearity condition links a point in 3D space to its position on a 2D image through the camera’s lens center, forming a straight line. This principle is what allows engineers to reconstruct three-dimensional terrain from aerial photographs.

In computer graphics, collinearity checks help simplify shapes. If three vertices of a polygon turn out to be collinear, the middle vertex is redundant and can be removed without changing the shape, which saves processing power during rendering.