This is related to the question
A bar is broken at random in two places. Find the average size of the smallest, of the middle-sized, and of the largest pieces.
I have already seen related questions: 1, 2.
My question is with regard to a way that I thought of:
Let the pieces have lengths $a$, $b$, $1-a-b$. Let the separating points be $A$ and $B$ respectively. Then, the probability distribution of all these lengths is the same.
WLOG, let the leftmost piece be the smallest, and rightmost piece be of largest length [middle one being in between, position- and length-wise]. This is one of the $3!$ possible cases. So, I calculate the mean length in this case, and multiply it by $3!$:
Edited based on further thought, and the comment by @lulu:
Let the length of the leftmost segment be $x\ (\le t)$. Then:
In the case we are considering (described above, as one of the $3!$ cases), the CDF is $$F(t,x)=Prob(a\le t, and\ the\ order\ smallest-middle-largest)=Prob(A\in[0,t)\ \cap\ B\in[2x,x+(1-x)/2))$$ $$=t \cdot \frac{1-3x}{2}$$
I am not sure on how to proceed, but replacing $x$ by its expected value in terms of $t$ doesn't seem to work:
$$F_1(t) = t \cdot \frac{1-3(t/2)}{2} = \frac{t(2-3t)}{4}$$ This is a monotonically increasing function in $[0,1/3]$.
Using this to compute the expectation as $$\int_0^{1/3} (t/2)\cdot \frac{d}{dt}F_1(t)\ dt=1/216$$ Multiplying this by $3!$ gives $1/36$, which is off by a factor of $4$.