← Complete problem index

PROJECT EULER · #0966

Triangle Circle Intersection

Statement only · SolvedOriginal problem ↗

Let I(a,b,c) be the largest possible area of intersection between a triangle of side lengths a,b,c and a circle which has the same area as the triangle.
For example I(3,4,5)4.593049 and I(3,4,6)3.552564.

Find the sum of I(a,b,c) for integers a,b,c such that 1abc<a+b and a+b+c200.
Give your answer rounded to two digits after the decimal point.

Write-up coming later

The complete problem is available here. An approach, code, and answer will be added later.