Five points lie in a plane. For each of the points and the distance to point is times its distance to The angle is a right angle.
If the side lengths are all distinct integers, find the minimum value of
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.
Without loss of generality, put A at the origin and B at ( b , 0 ) . The condition given for C , D , E is that they all satisfy the equation x 2 + y 2 = 2 ( ( x − b ) 2 + y 2 ) , which becomes, after some manipulation, ( x − 2 b ) 2 + y 2 = 2 b 2 . This is a circle centered at ( 2 b , 0 ) with radius b 2 . Since C D E is a right triangle whose vertices lie on the circle, C E is a diameter, of length 2 b 2 , and we get C D 2 + D E 2 = 8 b 2 . If C D , D E , b are all integers (note b = A B ), then looking mod 8 shows that C D , D E are both even, say C D = 2 x , D E = 2 y , and the equation becomes x 2 + y 2 = 2 b 2 where x , y are distinct positive integers (and neither equals b / 2 ).
The set of solutions to this equation can be parameterized, but as we are only looking for the minimal solution, we can just search over small values of b . The smallest value of b where a solution exists with positive, distinct x , y is b = 5 , x = 1 , y = 7 , which leads to A B = 5 , C D = 2 , D E = 1 4 , and a sum of 2 1 . There are no other such solutions for b ≤ 1 0 , so it's clear that this gives the minimal sum.