Can someone tell me how to construct an equilateral pentagon (all its sides equal, not its angles) inscribed in an ellipse (with semi-axes 2 and 1) without approximations, with the exact coordinates of its vertices? (and if possible with a vertex at the point (0,1))
And with an equilateral polygon of n sides?
Let the vertices of the pentagon be: $$ P_1=(0,1),\ P_2=(x,y),\ P_3=(h,-k),\ P_4=(-h,-k),\ P_5=(-x,y) $$ with $x,y,h,k$ all positive real numbers. It is straightforward to write down four equations for them: $$ \cases{ \strut x^2 + (y - 1)^2 = 4 h^2\\ \strut (x - h)^2 + (y + k)^2 = 4 h^2\\ \strut x^2/4 + y^2 = 1\\ \strut h^2/4 + k^2 = 1 } $$ I solved this system with Mathematica but the exact output is too large to be written here. Here's a numerical approximation: $$ h = 0.84145,\ k = 0.907188,\ x = 1.62958,\ y = 0.579753. $$