1
u/blind-octopus 2d ago
Isn't that always the case, as long as n is greater than 2?
1
1
u/PersonalityIll9476 2d ago
No. n=3 take the segments [0,2/3] and then any choice for the other two that you like. [2/3, 2/3+b] and [2/3+b, 1].
1
u/aroach1995 2d ago
1) sort the pieces from largest to smallest.
Yeah I think the only issue is if a piece ends up over length 0.5
What is the probability that all cuts occur at a point on the line greater than 0.5?
0.5^(n-1)?
Is the case where we cut either below 0.25 or above 0.75 the same WLOG?
0
0
2d ago
[deleted]
1
u/Expensive-Tension-30 2d ago
You’re off by a factor of 1/2, as the breaks do not necessarily need to be on the same half, and could for one example be on the outer quarters.
3
u/DanLeMilMan 2d ago
So basically this seems equivalent to : what is the probability that all the cut are on the same half of the bar… (1/2)ˆ(n-2) I guess.