Find the smallest inradius of a triangle with vertex coordinates:
, where .
If this inradius is , submit .
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.
This is a long working since I don't know many formulas, but here goes :
1) find the length of each side in a variable.
==> √(2a² + 8)
==> √(5a² – 6a + 9)
==> √(a² – 4a + 5)
2) find the area of triangle in a variable. I used the lengthy √[s(s-x)(s-y)(s-z)] but in the end it turned out to be triangle's area A = (a² – 3a + 6)/2.
3) find the local minimum of { 2A / [ sum of side lengths] } for 0 < a < 3.
==> minimum of 0.437039559
==> at a = 2.14234
Answer
= floor (10^6 × 0.437039559)
= 437039