Suppose that $X \sim \text{Exponential}(\lambda)$ and $Y \sim \text{Exponential}(2\lambda)$ are independent. I want to find the density of their sum $Z = X + Y$.
Now, I know how to solve this problem using the convolution.I was wondering if it can be solved in a different fashion. In particular:
$$ f_Z(Z = z) = f_Z(X + Y = z) = f_Z(X = x, Y= z - x) $$
By independence we obtain:
$$ f_Z(X = x, Y= z - x) = f_X(X=x)f_Y(Y= z- x) = \lambda e^{-\lambda x}\mathbb{1}_{\{x > 0\}}2\lambda e^{-2\lambda (z -x) }\mathbb{1}_{\{z -x > 0\}} $$
After this point, the rest is algebra:
$$ \lambda e^{-\lambda x}\mathbb{1}_{\{x > 0\}}2\lambda e^{-2\lambda (z -x) }\mathbb{1}_{\{z -x > 0\}} = 2\lambda^2e^{\lambda x - 2\lambda z}\mathbb{1}_{\{z -x > 0\}} $$
This does not agree with the result I get from using the convolution formula. I am wondering why. Can I transform what I have here to match that or is there something fundamentally wrong in this procedure?