I'm trying to calculate the expected area of a random triangle with a fixed perimeter of 1.
My initial plan was to create an ellipse where one point on the ellipse is moved around and the triangle that is formed with the foci as the two other vertices (which would have a fixed perimeter) would have all the varying areas. But then I realized that I wouldn't account for ALL triangles using that method. For example, an equilateral triangle with side lengths one third would not be included.
Can anyone suggest how to solve this problem? Thanks.
Since the Heron's formula gives: $$ A=\frac{1}{4}\sqrt{(a^2+b^2+c^2)^2-2(a^4+b^4+c^4)},$$ assuming that the random choice is made accordingly to the broken stick model (notice that not every choice for the side lengths satisfies the triangle inequality, hence for such cases we set the area as zero): $$\begin{eqnarray*}\mathbb{E}[A]&=&\frac{1}{2}\int_{0}^{1}\int_{x}^{1}\sqrt{\max\left[0,(x^2+(y-x)^2+(1-y)^2)^2-2(x^4+(y-x)^4+(1-y)^4)\right]}\,dy\,dx\\&=&0.00747998\ldots\end{eqnarray*}$$ A random model that makes more sense is to choice a random point (with respect to the uniform measure) on the set $T=\{(u,v,w):u,v,w\geq 0, u+v+w=\frac{1}{2}\}$, then pick the side lengths as $a=v+w,b=u+w,c=u+v$. In such a way the triangle inequality is always fullfilled and the Heron's formula gives simply: $$A = \sqrt{\frac{uvw}{2}},$$ so: $$\mathbb{E}[A]=\frac{8}{\sqrt{6}}\int_{T}\sqrt{uvw}\,d\mu=\frac{1}{\sqrt{3}}\int_{0}^{\pi/2}\int_{0}^{\pi/2}\sin^5\theta \cos^2\theta\sin^4\phi\, d\theta \,d\phi=\frac{\pi}{70\sqrt{3}}.$$