[Math] Probability of rectangles area being less than 0.5 w/ total length of sides = 2

probabilityrandom variablesstochastic-analysisuniform distribution

Question: A random point splits the interval [0,2] in two parts. Those two parts make up a rectagle. Calculate the probability of that rectangle having an area less than 0.5.

So, this is as far as I've gotten; I've set
$X := length of one side$.

Then $Y := length of other side$. Both of the variables are uniformally distributed but Y is dependent on X. But if I set $Y = (2-X)$, then I only have to figure out the probability of $P(XY<0.5) = P(X(2-X)<0.5)$.

Here is where I can't go any further. Any ideas?

Best Answer

If you solve $X(2-X)<0.5$ for $X$ you get $X>1+\frac{1}{\sqrt{2}}$ and $X<1-\frac{1}{\sqrt{2}}$

The cdf of $X$ is

$F(x)=\begin{cases}0, \ \ x<0 \\ \frac{x}{2}, \ \ \ 0\leq x\leq 2 \\ 1, \ \ x>0\end{cases}$

It is $F(X>x)=1-F(X<x)$

Therefore you have to calculate $F(1-\frac{1}{\sqrt{2}})+(1-F(1+\frac{1}{\sqrt{2}}))$

Remark

The distibution of $X$ is symmetric around the mean 1.

Thus $F(1-\frac{1}{\sqrt{2}})+(1-F(1+\frac{1}{\sqrt{2}}))=2\cdot F(1-\frac{1}{\sqrt{2}})$ and the result reduces to the expression $1-\frac{1}{\sqrt{2}}\approx 29.29\%$

Related Question