If I have a triangle with sides of length a, b, c and I have a rope of length L, what is the maximum surface of a boundary I can form with that rope that is entirely inside the triangle.
Normally, if the L > a + b + c, then the surface is the surface of the triangle.
Any ideas ?
I think HSN is on the right track. When L > a+b+c or when L can form a circle inside the triangle the problem is easy. Now for the interesting case in between:
(I think) L should cut the corners of the triangle in straight lines such that the length of these lines are equal for all three corners. The reason is that if these shortcuts have different length, one could push the longest one towards the original corner of triangle by epsilon and pull on the shorter edge and increase the area. Note that these edges should leave out Isosceles triangles at each corner (with the similar argument). Lets $e$, $f$ and $g$ denote the length of the side of these triangles and let $h$ be their base (equal for all 3).
We can write the area for the first small triangle in one corner as: $$Area_1 = \frac{1}{2} h^2 \sqrt{h^2/e^2 - 1/4}$$ and the total area surrounded by L as: $$A_{rope} = Area_{abc} - Area_{1} - Area_{2} - Area_{3}$$ here $Area_{abc}$ is the total area of triangle abc with $p = (a+b+c)/2$: $$Area_{abc} =\sqrt{p(p-a)(p-b)(p-c)} $$ On the other hand you can write L as: $$L = a+b+c+3 h - 2(e + f+g)$$ Now we can remove $e$, $f$ and $g$ from the two equations for area and $L$, and write them based on $h$ and the angles of triangle ($A,B,C$) using the cosine rule. For example: $$a^2 = b^2 + c^2 - 2bc \cos(A)$$ Here $A$ is the angle opposite to the edge $a$.
Now we solve the formula for L to obtain $h$ as a function of $L$ and substitute it in the formula for $A_{rope}$, which gives us the area for this $L$ (corresponding $h$).
The only part that is missing (except for details) is a proof that maximum area formed using the rope will form straight shortcuts. A first thought may suggest that it should be curvy (like an expanding circle) but it seems to me this is more optimal. I may be wrong. On the other hand if it is straight, our key observation that the length of these shortcuts are equal (i.e. $h$) gives us the rest.