Imagine that you are standing somewhere on a map.
You do not know your exact position. But you can see two known landmarks.
If you measure the direction to each one, something surprising happens: a triangle can help fix your location.
Quick Answer
Start with two known points, A and B.
Then measure angles from A and B toward your unknown position P.
Each measured angle creates a ray. Where the two rays meet, that is point P.
Two known places + two measured angles = one geometric location.
Why This Works
Geometry is powerful because it turns vague looking into exact relationships.
One angle alone is not enough. It only tells you that your position lies somewhere along one direction.
But a second angle from another known place adds a second direction.
The two directions cross at one point. That crossing fixes the position.
Figure 1. Triangulation starts with a known baseline and uses measured directions to find an unknown position.
The Baseline Comes First
Triangulation needs a known starting shape.
The first part is the baseline. That is the segment between A and B.
If we know the location of A and B, then the baseline AB is known too.
This matters because geometry needs something firm to begin with. A triangle cannot locate a new point unless one side is already anchored.
From Surveying to Maps
This idea became a major tool in land surveying.
Surveyors could measure one baseline very carefully, then use angles to extend a network of triangles across large regions.
The U.S. Geological Survey explains that triangulation uses a measured baseline and observed angles to compute positions of other points.[1]
This was one of the big ways people turned the world into a map.
Snellius and the Power of Triangle Networks
In the early seventeenth century, Willebrord Snellius used triangulation in a famous geodetic survey in the Netherlands.
His work showed that triangles could connect local measurements to much larger questions about Earth itself.[2]
That is an important step in our story.
Earlier articles asked how geometry could measure circles, heights, and Earth’s size. Now geometry begins to measure position.
A Small Example
Suppose A and B are two known towers on a map.
At A, you measure an angle of 55° from the baseline. At B, you measure an angle of 45°.
You can draw those two rays. Their intersection is the unknown point P.
In real surveying, the geometry can then be solved with trigonometry. But the first idea is simpler than the formulas:
Find two reliable directions, and let geometry do the rest.
Python — Find the Intersection of Two Rays
Modern computation often solves location problems by writing each direction as a straight line.
In the example below, A and B are known points. We create one ray from each point and compute where they meet.
import math
import numpy as np
A = np.array([0.0, 0.0])
B = np.array([10.0, 0.0])
alpha_deg = 55
beta_deg = 45
u = np.array([math.cos(math.radians(alpha_deg)),
math.sin(math.radians(alpha_deg))])
# beta is measured inward from point B
v = np.array([-math.cos(math.radians(beta_deg)),
math.sin(math.radians(beta_deg))])
M = np.column_stack((u, -v))
rhs = B - A
s, t = np.linalg.solve(M, rhs)
P = A + s * u
print(P)
This returns a point close to:
P ≈ (4.17, 5.96)
The exact numbers are less important than the meaning.
Two directions were enough to compute one position.
Predict first.
Change alpha_deg from 55 to 70.
Will point P move higher, lower, or both sideways and upward?
One Important Modern Note
The word triangulation is sometimes confused with trilateration.
They are related, but not the same.
Triangulation mainly uses angles.
Trilateration mainly uses distances.
Modern GPS usually finds position through trilateration with signals from satellites, not classical angle-only triangulation.[3]
Still, both ideas belong to the same larger dream: use geometry to know where you are.
Why This Story Matters
Measuring the world is not only about size.
It is also about place.
Once angles can locate a point, maps become more reliable, surveys become more precise, and engineering gains a stronger foundation.
Roads, bridges, coastlines, towers, aircraft navigation systems, and space missions all depend on the larger history of turning position into numbers.
Triangulation shows that location can be discovered, not guessed.
Words to Keep
baseline
A known segment used as the starting side of a triangle.
triangulation
A method that finds a point by using known locations and measured angles.
ray
A line that starts at one point and extends in one direction.
intersection
The point where two lines or rays meet.
trilateration
A method that finds a point by using distances rather than angles.
One Sentence to Keep
A triangle can tell you where you are because two known places and two measured directions can meet at one exact point.
What Should We Ask Next?
If triangles can locate us on Earth, what happens when the whole world needs one common coordinate system?
That leads us toward latitude, longitude, and the long history of turning Earth into a grid.
Next: How Did People Turn the Earth into a Grid?
Previous: How Did Ancient Astronomers Turn the Sky into Angles?
Sources & Further Reading
- U.S. Geological Survey, Map Projections and the Shape of the Earth — background on surveying, geodesy, and triangulation in mapmaking.
- MacTutor History of Mathematics, “Willebrord Snell” — Snellius and early large-scale triangulation work.
- GPS.gov, GPS Accuracy Overview — background on modern satellite positioning and the distinction from classical angle-based triangulation.
Teaching note: the Python section uses a modern line-intersection approach to express the old geometric idea in a form readers can test directly.