Say we have two distributions $X$ and $Y$. I know that the pdf of the distribution $Z = X + Y$ is given by:
$f_Z(z) = \int_{-\infty}^{\infty}f_X(x)f_Y(z-x)dx$
The intuition is that you sum up the probabilities of all possible $x$, $z-x$ pairs. However, now I want to find the pdf of $Z = XY$. Using the same intuition as above, I expect it to be:
$f_Z(z) = \int_{-\infty}^{\infty}f_X(x)f_Y(\frac{z}{x})dx$
However, wikipedia says that the correct pdf is:
$f_Z(z) = \int_{-\infty}^{\infty}\frac{1}{|x|}f_X(x)f_Y(\frac{z}{x})dx$
Where is the extra $\frac{1}{|x|}$ term coming from? What is the intuition? Thanks.