We need to divide a line segments into two parts by selecting a point at random. Then we have to find the probability that the length of the larger segment is at least 3 times the shorter.
My take to the problem :
Considering a line segment of unit length 1.
Let $X$ denote the length of the segment on the left side. So the pdf can be written as :
$f(x) = \dfrac{1}{2} , 0<x<1$
Now according to the question we need to find $P(X>3(1-X))$ which is $P(X> \dfrac{3}{4})$ , which gives the value $\dfrac{1}{8}$. Is this correct ?