I have the following problem (related to Bertrand):
Given a circle of radius $a=1$. Choose 2 points randomly on the circle circumference. Then connect these points using a line with length $b$. What is the expected length of this line? ($\mathbb{E}[b]$=..?)
I have tried this:
$x_i=\cos(\theta_i), y_i=\sin(\theta_i), \quad i=1,2$, where $\theta_i$ is uniformly distributed on $[0,2\pi]$
Then I tried to compute the squared distance. The squared distance between two points in the Eucledian space is:
$$d^2=(\cos(\theta_1)-\cos(\theta_2))^2+(\sin(\theta_1)-\sin(\theta_2))^2 $$
Now taking expectations I got:
$$E(d^2)=2-2 \ ( \ E(\cos(\theta_1)\cos(\theta_2) + E(\sin(\theta_1)\sin(\theta_2) \ )$$ (as $E(\cos^2(\theta_i))=E(\sin^2(\theta_j))$
Then $$E(\cos(\theta_1)\cos(\theta_2))\overset{uniform}=\int_0^{2\pi}\int_0^{2\pi}\theta_1 \theta_2\cos^2(\frac{1}{2\pi})\ \mathrm{d}\theta_1 \ \mathrm{d}\theta_2 = 4\pi^4 \cos^2(\frac{1}{2\pi})$$
and
$$E(\sin(\theta_1)\sin(\theta_2))\overset{uniform}=\int_0^{2\pi}\int_0^{2\pi} \theta_1 \theta_2\sin^2(\frac{1}{2\pi})\ \mathrm{d}\theta_1 \ \mathrm{d}\theta_2 = 4\pi^4 \sin^2(\frac{1}{2\pi})$$
so that $$d^2=2-4 \pi^2 \left(\cos^2(\frac{1}{2 \pi}) + \sin^2(\frac{1}{2\pi})\right)=2-4 \pi^2$$
But that doesn't make sense since it is negative. Any help would be appreciated
We want to compute $ED$ where $D = \sqrt{(\cos\Theta -\cos \Phi)^2 + (\sin\Theta -\sin \Phi)^2}$ and we know that $\Theta, \Phi$ are independent with distribution uniform on $[0, 2\pi]$.
Now my guess is that by symetry, $E[D|\Phi]$ does not depend on $\Phi$. This makes one less integral to compute.
– mookid Mar 01 '14 at 13:52