We have a bar of length $t$. We randomly choose 2 points and break it at these points, chopping the bar into 3 bars. What is the probability that the smallest piece is shorter than $\frac{t}{10}$?
I think by denoting the two points $a$ and $b$ and $a<b$, the three pieces are of length $a$, $b-a$ and $t-b$, we need to first find the distribution of the smallest of the three and then use its c.d.f to calculate the final answer. However I'm 100% sure that's not the best way to do this problem, please help me clear my mind and tell me an elegant way to attack this problem, thank you very much!
Let $A$ be the event in which the smallest piece is longer than $0.1 t$. When we pick the first point, we can choose any value $x$ with $0.1 t < x < 0.5 t$ (values between $0.5 t$ and $0.9 t$ are also possible, but we are dealing with a symmetric problem). We can distinguish two cases:
Taking symmetry into account, we find:
\begin{align} P(A) & = 2 \int_{0.1}^{0.2} (0.8 - x) dx + 2 \int_{0.2}^{0.5} 0.6 dx \\ & = 2 \cdot 0.8 \cdot (0.2 - 0.1) - 2 \cdot \frac{0.2^2 - 0.1^2}{2} + 2 \cdot 0.6 \cdot (0.5 - 0.2) \\ & = 0.16 - 0.03 + 0.36 \\ & = 0.49 \end{align}