[Math] Finding the Marginal PDF from a Joint PDF with strange piecewise bounds

integrationmultivariable-calculusprobability distributions

I am supposed to show that the marginal PDF of a random variable $Y$ is:
$$g(y)= \begin{cases}
y, & 0<y \le 1\\
y^{-3}, & y>1\\
0, & \textrm{otherwise}
\end{cases}$$
given the joint PDF:
$$f(x,y)=\begin{cases}
\frac{4x^3}{y^3}, & 0<x<1, x<y\\
0, & \textrm{otherwise}
\end{cases}$$

I know one's supposed to integrate with respect to x, but I am not sure which boundries I should choose, and I can't seem to get the right answer.

Best Answer

Note that by definition, $$ g(y)=\int_{-\infty}^{\infty}f(x,y)\ dx. $$ There are three cases to consider:

  • if $y>1$, then integrate for $x$ on $[0,1]$: $g(y)=\int_{0}^1\dfrac{4x^3}{y^3}\ dx$;
  • if $0<y\leq 1$, then integrate for $x$ on $[0,y]$: $g(y)=\int_{0}^y\dfrac{4x^3}{y^3}\ dx$
  • if $y<0$, then the integration is $0$.
Related Question