Find the length of the shortest path that can be drawn from the point to the point such that the path touches the -axis and the -axis once.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
We know the shortest distance between two points is a straight line. With this in mind, we start by reflecting ( 2 , 8 ) over the x -axis and then over the y -axis.
If you connect ( 6 , 3 ) to the newly reflected point ( − 2 , − 8 ) to make a straight line and the distance traveled by this path is the same as the distance traveled by its reflection through the axes. Given that it's a straight line (and the shortest distance between two points is a straight line), this will give the shortest distance. The distance between ( 6 , 3 ) and ( − 2 , − 8 ) is ( 6 − ( − 2 ) ) 2 + ( 3 − ( − 8 ) ) 2 = 1 8 5