I wish to find the expected area of a triangle with vertices independently and uniformly at random chosen from a unit circle. I solved this problem, but my answer does not agree with the one found here. Where did I make a mistake?
Attempt: Let $O$ be the center of the circle and let $P_1, P_2, P_3$ be the vertices. By linearity of expectation, symmetry, and law of sines, $\mathbb{E}([P_1P_2P_3]) = \mathbb{E}([OP_1P_2] + [OP_2P_3] + [OP_3P_1]) = 3\mathbb{E}([OP_1P_2]) = \\ \frac{3}{2}\mathbb{E}(OP_1 \cdot OP_2 \cdot \sin(\angle P_1 O P_2)).$
Specifying $OP_1, OP_2$ does not affect the distribution of the angle, so $\mathbb{E}(OP_1 \cdot OP_2 \cdot \sin(\angle P_1 O P_2)) = \mathbb{E}(OP_1 \cdot OP_2)\mathbb{E}(\sin(\angle P_1 O P_2)).$
Every angle in $[0,\pi]$ is equally likely, so $\mathbb{E}(\sin(\angle P_1 O P_2)) = \frac{1}{\pi} \int_0^{\pi} \sin(x) \, dx = \frac{2}{\pi}.$ The distances $OP_1, OP_2$ are independent, so $\mathbb{E}(OP_1 \cdot OP_2) = \mathbb{E}(OP_1)^2.$ The ring of distance $r$ from the center has circumference $2\pi r,$ so the pdf of $OP_1$ is proportional to $r.$ Thus, $\mathbb{E}(OP_1) = \frac{\int_0^1 r^2 \, dr}{\int_0^1 r \, dr} = \frac{2}{3}.$ Combining everything gives us an expected value of $\frac{3}{2} \cdot \frac{2}{\pi} \cdot \left(\frac{2}{3}\right)^2 = \frac{4}{3\pi}$ for the area of the triangle.
I suspect that the first 2 paragraphs are solid and the separation of angle and distance is legal. Maybe the issue is that $OP_1, OP_2$ are not independent, but how could that be?