Consider an ellipse centered at the origin with width $2a$ and height $2b$. Choose points $A$, $B$, $C$ independently and uniformly distributed on the perimeter of the ellipse, and create $\triangle ABC$. What is the expected area of $\triangle ABC$ given $a$ and $b$?
$\hspace{4.5cm}$
This problem is distantly related to another problem problem, asking about the probability that the triangle is acute. In this post, I am interested in the expected area. For the case of the unit circle, where $a=b = 1$, the expected area evalautes to $\frac{3}{2\pi} \approx 0.47746$. The article Circle Triangle Picking provides a detailed derivation of this result. My question is what if we generalize this for the case of an ellipse.
The part I am struggling with is the "distributed on the perimeter of the ellipse." With a circle, the randomly choosing a point on the perimeter is equivalent to randomly choosing an angle $\theta \in [0, 2\pi)$. The problem with the ellipse is that this method uniformly distributes the points on the perimeter of the ellipse uniformly with respect to $\theta$, not along the perimeter itself. This post deals with generating random points on the perimeter of an ellipse; however, I am unsure how to include this detail.
The naive attempt would be to assume uniformly distributed points on the perimeter are uniformly distributed with respect to the $\theta$ (central angle of ellipse). If the question were phrased "$\cdots $ independently and uniformly distributed with respect to the central angle" (e.g, $\theta_i$ is chosen uniformly in $[0, 2\pi)$, and the parametrization of points $A,B,C$ are $(a\cos\theta_i, b\sin\theta_i)$), the question could be solved via the integral
$$\mathbb{E}(\text{Area of } \triangle ABC) = \frac{1}{8\pi^3}\int_{0}^{2\pi} \int_{0}^{2\pi} \int_{0}^{2\pi} A(\theta_1, \theta_2, \theta_3) d\theta_1 d\theta_2 d\theta_3$$
Where $A(\theta_1, \theta_2, \theta_3)$ is the area function (from determinant formula) given the parametrized coordinates $A,B,C$.
\begin{align*} A(\theta_1, \theta_2, \theta_3) = &\frac12 |a\cos\theta_1(b\sin\theta_2-b\sin\theta_3)\\ &+a\cos\theta_2(b\sin\theta_3-b\sin\theta_1)\\ &+a\cos\theta_3(b\sin\theta_1-b\sin\theta_2)| \end{align*}
The integral correctly evaluates the expected area for the case of the circle. How can we adjust (or completely change) this solution to resolve the problem of the perimeter of the ellipse. Any input/form is greatly appreciated.