Construct the perpendicular and discover the shortest path
Finding the nearest road, the closest point on a border, the shortest path from you to a wall — these are all the same question in disguise. Given a line and a point that's not on it, what's the shortest distance between them? It's not the horizontal distance, and it's not the vertical distance — it's the perpendicular distance, the length of the line segment that meets the original line at a right angle.
In this lesson, you'll start with the line y = 0.5x + 1 and the point P(4, 5). You'll construct the perpendicular from P to the line, find the foot of the perpendicular, calculate the distance using the Pythagorean theorem, and then discover the point-to-line distance formula — a one-step shortcut that gives the same answer.
By the end, you'll be able to find the distance from any point to any line, both by construction and by formula — with an AI tutor guiding you step by step.