I have a line of length $l$. I divide the line in $n$ segments. I do this by choosing $n - 1$ random points (I mean that the $n - 1$ points are uniformly distributed from $0$ to $l$).
I want to add a new random point. If this new point does not coincide with an old one, it will "destroy" an old segment and create two new segments:
4 points, 5 segments:
----------|---------|---------------|-----|-------
1 new point, 6 segments:
----------|---------|---|-----------|-----|-------
^
The question I'm trying to answer is: how long are these two new segments on average?
From the construction method, I think that the answer is $l / (n + 1)$ (that is, the length over the new number of segments). However I'm not sure for two reasons:
- I can't find a way to prove it;
- $l / (n + 1)$ is the average length of all segments, but I'm interested only in the new ones.
Could you shed some light on this?

After the new point is added, the $n+1$ segments, labelled in left-to-right order, form an exchangeable sequence. In particular, they all have the same marginal distribution, hence the same mean value of $l/(n+1)$.
But you are asking about the last two segments created, and I suspect there may be a "size bias" effect in play. When adding the $n^{\rm th}$ random point, the larger of the intervals in place are more likely than the smaller ones to receive this new point, so the new interval may be biased to be larger than a typical one of the $n$ subintervals. Indeed, conditional on the lengths (call them $L_1,\ldots, L_n$) of the $n$ segments in place after the first $n-1$ points have been selected, the expected value of one of the two new subintervals is $$ \sum_{k=1}^n (L_k/l)\cdot(L_k/2)={1\over 2l}\sum_{k=1}^n L_k^2>{l\over 2n}. $$ (The $>$ will be $=$ only when all but one of the $L_k$ is equal to $0$, an event of probability $0$.) It's not hard to check that $\Bbb E[L_k^2]={2l^2\over n(n+1)}$, so the mean value of the displayed expression is $l/(n+1)$ as expected.