The problem
Let's consider the interval $[0, 1]$. We break this interval randomly in two parts. Then we choose the bigger part and again we break it randomly into two parts. At the end we have three parts of the interval.
Breaking points are distributed uniformly.
I am to find the probability of getting a triangle from these three pieces.
My attempt
First of all let's notice that a triangle can be build iff:
- $a+b>c$,
- $|a-b| < c$,
where $a, b, c$ are lengths of our triangle sights.
Let's denote the breaking points by $x$ and $y$.
Suppose $x > \frac{1}{2}$. We do have three intervals after breaking our segment: $[0, y], [y, x], [x, 1]$.
The first condition of triangle's existence is trivially fulfilled. The second one implies: $$y > x - {1}{2} \text{ and } y < \frac{1}{2}.$$ I calculated that: $$f_{Y|X}(y|x) = \frac{f(x, y)}{\int \limits_{\infty}^{\infty}f_X(x) \mathbb{1}_{[0,x]}(y) \mbox{d}y}.$$ Where $f(x) = \mathbb{1}_{[0,1]}(x)$ and $f(x, y) = \mathbb{1}_{[0,1]}(x)\mathbb{1}_{[0,x]}(y)$.
I don't really know how the integration should look like. I would appreciate any tips or hints.