You want to travel from point A ( 2 , 3 ) to point B ( 5 , 2 ) such that your path starts from point A , intercepts the line y = 6 , then the line x = 8 , then the line y = 1 , and finally reaches point B . Find the minimum possible path length under these conditions. If the minimum length can be expressed as a b where a , b are positive integers with b square-free, then find a + b .
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.
Similar solution as @David Vreken's, but since I have got the figure nicely done...
The shortest path between two points A and B is one taken by a beam of light. Treat the lines y = 6 , x = 8 , and y = 1 as mirror where the beam of light reflects off. We can find the image light path by reflected the frame C D E F about the mirrors. Starting from A ( 2 . 3 ) , we find the final image of B is at B ′ ( 1 1 , 1 2 ) . Therefore the shortest length of the path is ( 1 1 − 2 ) 2 + ( 1 2 − 3 ) 2 = 9 2 , and a + b = 9 + 2 = 1 1 .
Problem Loading...
Note Loading...
Set Loading...
Reflect rectangle C D E F several times, first in C D , next in D E ′ , and finally in E ′ F " , as shown below:
Then B ′ ′ ′ has coordinates of ( 5 + 3 + 3 , 2 + 4 + 4 + 1 + 1 ) = ( 1 1 , 1 2 ) , and the minimum distance would be equivalent to the length of A B ′ ′ ′ , which is A B ′ ′ ′ = ( 1 1 − 2 ) 2 + ( 1 2 − 3 ) 2 = 9 2 . Therefore, a = 9 , b = 2 , and a + b = 1 1 .