Choosing two random numbers in $(0,1)$ what is the probability that sum of them is more than $1$?
Also what is probability of sum of them being less than $1$?
I think the answer should be $\frac{1}{2}$, but I have no idea.
EDIT: I should mention that the question is about a general distribution, and the numbers selected are independent.



For the general case, if $X$ and $Y$ are two independent, identically distributed variables with probability distribution function $f$ supported in $[0,1]$, then the probability that their sum exceeds $1$ is $$\begin{align} P[X+Y\ge1]=\iint\limits_{\substack{0\le x\le1\\0\le y\le1\\{x+y\ge1}}} f(x)f(y)\,\mathrm dx\,\mathrm dy=\int_0^1f(x)\left(\int_{1-x}^1f(y)\,\mathrm dy\right)\,\mathrm dx=\int_0^1f(x)\big(1-F(1-x)\big)\,\mathrm dx, \end{align}$$ where $F(t)=\int_0^tf(u)\,\mathrm du$ is the cumulative distribution function of the random variables. I don't think this simplifies any further.
(Sanity check: For the uniform distribution, $f$ is identically $1$ in $[0,1]$, so $F(t)=t$ and you get $P[X+Y\ge1] = \int_0^1\big(1-(1-x)\big)\,\mathrm dx=\int_0^1 x\,\mathrm dx=1/2$, as expected.)