Let X be an exponential random variable with parameter λ and Y be a uniform random variable on [0,1] independent of X. Find the probability density function of X + Y.
Now I have computed this integral for the last hour or more and at this point I really would like to now if I at least just set up the integral correctly. So here is my solution:
$$P(X+Y\le a)=\int_0^{a-1}\int_0^1dydx+\int_{a-1}^a\int_0^{a-x}\lambda e^{-\lambda x}dydx \space \space \text{for} \space \space a\ge 1$$ and for $0 \le a \le 1$ $$(f_x*f_y)(a)=f_{X+Y}(a)=\int_0^a \lambda e^{-\lambda x}dx=1-e^{-\lambda a}.$$
The solution is $$ f_{X+Y}(a)= \begin{cases} 1-e^{-\lambda a} & 0 \le a \le 1 \\ e^{-\lambda a}(e^{\lambda}-1) & a \ge 1 \end{cases} $$
Comment: To help sort out differences of opinion, here is a simulation.
U ~ UNIF(0,1), V ~ EXP(1), X = U + V.
100,000 iterations of X. Your density below 1 fits nicely.