7. Find all points (x,y) that are 13 units away from the point (2,7) and that lie on the line x - 2y = 10. Give your answer as a list of points separated by semicolons, with the points ordered such that their $x$-coordinates are in increasing order. (So "(1,-3); (2,3); (5,-7)" - without the quotes - is a valid answer format.)
Rewrite the equation of the line as x = 2y + 10 (1)
We can envision that (2,7) is the center of a circle with a radius of 13
The equation of this circle is (x - 2)^2 + ( y - 7)^2 = 13^2 (2)
Sub (1) into (2) for x and we have
( 2y + 10 - 2)^2 + ( y - 7)^2 = 13^2 simplify
( 2y + 8)^2 + ( y - 7)^2 = 169
4y^2 + 32y + 64 + y^2 - 14y + 49 = 169
5y^2 + 18y - 56 = 0 factor as
(5y + 28) ( y - 2) = 0
Setting each factor to 0 and solving for y produces y = -28/5 and y = 2
Sub these back into (1) to find the associated x values
x = 2(-28/5) + 10 = -56/5 + 50/5 = -6/5
x = 2(2) + 10 = 14
So...the points on the line x - 2y = 10 that are 13 units away from (2,7) are
(-6/5, -28/5) and ( 14, 2)
Here's a graph : https://www.desmos.com/calculator/37bqbov5mv