My wife came up with the following problem while we were making some decorations for our baby: given a triangle, what is the largest equilateral triangle that can be inscribed in it? (In other words: given a triangular piece of cardboard, what is the largest equilateral triangle that you can cut out of it?)
She also came up with the following heuristic/conjecture: take the largest angle of the given triangle. (It is guaranteed to be at least $60^\circ = \pi/3$, as not all three angles of a triangle can be less than that.) Now the answer (the largest inscribed equilateral triangle) can be found among those made by marking off a $60^\circ$ angle at that vertex, with the two ends chosen somehow. (In other words: the inscribed equilateral triangle can be chosen to have that vertex as one of its vertices.)
My intuition for geometry is not so good. :-) I played with a few examples in Geogebra and couldn't find any counterexamples, nor could I think of a proof, so I'm asking here.
This is similar to Find the maximum area possible of equilateral triangle that inside the given square and a special case of Largest Equilateral Triangle in a Polygon (whose paper I don't have access to—all I could find via citations to that paper is that it gives an $O(n^3)$ algorithm—and in any case the problem may be simpler for a triangle).
Questions:
- How can one find the largest equilateral triangle that can be inscribed in a given triangle?
- Can such a triangle always be found with one vertex at one of the vertices of the given triangle, specifically the one with the largest angle?
- (If the answer to the above is no) When is the above true? For instance, is the conjecture true when the triangle is isosceles, with the two sides adjacent to the largest angle equal?














Take the two vertices on the shortest side and draw circles from each to the other:
If the circles intersect within the triangle as above, the largest equilateral is as shown in green. It can be seen that if the green triangle is rotated around either vertex, it will have to be smaller.
If the circles don't intersect within the triangle as in the following case:
...then draw a perpendicular from the vertex opposite the longest side and form the equilateral as shown:
In that case it can also be seen that if the green triangle is rotated around the vertex it would have to be smaller.
EDIT: One more case where the inscribed triangle occupies none of the vertices
But that isn't optimal since the triangle can be rotated to afford more room.
EDIT #2: (reply to @ran)