Given a point with , determine the minimum perimeter of a triangle with one vertex at , one on the -axis, and one on the line .
Note: You may assume that a triangle of minimum perimeter exists.
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.
Consider a triangle as described as described by the problem. Label it's vertices A , B , C so that A = ( a , b ) , B lies on the x -axis, and C lies on the line y = x . Furthermore, let D = ( − a , − b ) be the reflection of A in the x -axis, and let E = ( b , a ) be the reflection of A in the line y = x . Thus, A B = D B and A C = C E , so the perimeter of A B C is D B + B C + C E ≥ D E = ( a − b ) 2 + ( a + b ) 2 = 2 a 2 + 2 b 2 . This lower bound can be achieved: set B ( resp. , C ) to be the intersection between the segment D E and the x -axis ( resp., the line x = y ) . Therefore, the minimum perimeter is in fact 2 a 2 + 2 b 2