I was thinking about this question after a related problem: what's the expected number of draws for the sum to exceed 1? For that problem, the answer is known and is a surprising result http://mathworld.wolfram.com/UniformSumDistribution.html
My intuition is the final draw will be larger than the average draw. This is because larger draws are more likely to make the sum exceed 1, skewing the expectation to be above average.
I did a simulation in a spreadsheet with 1 million draws and the estimate I found was the final draw was about 0.655.
I have tried many techniques to try and solve this analytically. But none of my answers are close to 0.655, so either my simulation is wrong or my math is wrong (I'm thinking it's my math).
Anyone able to help how to write out this expectation?
My current method is this: the expectation of the final draw will be the sum from k=2 to infinity of the probability the kth draw makes the sum exceed 1 (this is 1/[k(k-2)!] as explained here) times the expected value of the final draw--which would range from a lower value of 1 - (sum on turn k-1, given this sum is less than 1) to the upper value of 1. It's this term that is giving me trouble.
Or maybe I'm approaching this completely wrong. Any pointers would be great.
Also, I'm planning on using this as a puzzle for my blog. I will definitely credit anyone that helps. Thanks.
The idea in this exercise, as in the one asking about the number of draws needed for the sum to exceed $1$, is to condition on the value of the first draw.
To wit, for every $x$ in $(0,1)$, consider $$ g(x)=\sum_{n\geqslant1}P(S_n\leqslant x). $$ Then $P(S_1\leqslant x)=x$ and $S'_n=S_{n+1}-S_1$ defines a process $(S'_n)_{n\geqslant1}$ independent of $S_1$ and distributed like $(S_n)_{n\geqslant1}$. Conditioning on the value $z$ of $S_1$, one gets $$ g(x)=x+\sum_{n\geqslant1}\int_0^xP(S_n\leqslant x-z)\mathrm dz=x+\int_0^xg(z)\mathrm dz. $$ Thus, $$ g(x)=\mathrm e^x-1. $$ The value of $g(1)$ implies the well known fact that one needs a mean number of $\mathrm e$ draws to exceed $1$.
As regards the present exercise, note that the density $f$ of the draw when the sum first exceeds $1$ is such that, for every $x$ in $(0,1)$, $$ f(x)=\sum_{n\geqslant1}P(S_n\lt1\leqslant S_n+x)=\sum_{n\geqslant1}P(1-x\leqslant S_n\lt1), $$ that is, $$ f(x)=g(1)-g(1-x)=\mathrm e-\mathrm e^{1-x}. $$ Finally, the expected value of the final draw is $$ \int_0^1xf(x)\mathrm dx=2-\tfrac12\mathrm e\approx0.640859. $$