How To: Find a Point on a Line Given a Point and a Distance
Posted On 11/12/2016
I faced a little mathematical challenge recently. It is as follow:
Given a line with a known equation, a point and a distance
, find the coordinates of the point
that is at a distance
from
.
The equation of the line is:
Which is equivalent to:
The trick here is to use the circle formula:
In our case, the center of the circle is and the radius is the distance
. Using this formula, we will be able to find
. After that, it is as simple as using the line formula to find
.
Let’s start by finding .
Now that we have , we can find
by using the line formula:
And there you go, you have found !