Density function for a random variable having a mixed distribution

962 Views Asked by At
  • A random variable has the following mixed distribution (ie: A distribution that is both discrete and continuous):

$P_{X}=\frac{1}{3}E(1)+\frac{2}{3}B(\frac{1}{2})$,

where $E(1)$ is the exponential distribution with $\lambda=1$ and $B(1/2)$ is the Bernoulli distribution with p=1/2. What is the density function for $P_{X}$?

I'd also like to know what $\textbf{E}X$ and $\operatorname{Var}(X)$ is, as well as the Characteristic function.

2

There are 2 best solutions below

0
On

Here is the answer done with Maple. $$ with(Statistics): E := RandomVariable(Exponential(1)): B := RandomVariable(BernoulliDistribution(1/2)): Z := (1/3)*E+(2/3)*B:$$ Its PDF is found by $$PDF(Z, t) $$ which outputs

$$\cases{0&$t<0$\cr 3/2\,{{\rm e}^{-3\,t}}&$t<2/3$\cr 3/2\,{{\rm e}^{-3\,t}}+3/2\,{{\rm e}^{-3\,t+2}}&$2/3\leq t$\cr}. $$ Then $$ Mean(Z)$$ $$ \frac 2 3$$ $$ Variance(Z)$$ $$ \frac 2 9$$ and $$CharacteristicFunction(Z, omega) $$ outputs $$-3/2\,{\frac {1+{{\rm e}^{2/3\,i\omega}}}{i\omega-3}} .$$ See Statistics for more info.

0
On

Let $Y \sim {\rm Exponential}(\lambda = 1)$ and $Z \sim {\rm Bernoulli}(p = 0.5)$. Then $X = \tfrac{1}{3}Y + \tfrac{2}{3}Z$, and we easily see that $$(X \mid Z = 0) = \tfrac{1}{3}Y \sim {\rm Exponential}(\lambda = 3);$$ i.e., $$f_{X \mid Z = 0}(x) = \begin{cases} 3e^{-3x}, & x \ge 0 \\ 0, & x < 0. \end{cases}$$ Similarly, $$(X \mid Z = 1) = \tfrac{1}{3}Y + \tfrac{2}{3}$$ is a shifted exponential, with density $$f_{X \mid Z = 1}(x) = \begin{cases} 3e^{-3x+2}, & x \ge \tfrac{2}{3} \\ 0, & x < \tfrac{2}{3}. \end{cases}$$ Consequently, the unconditional density is given by $$\begin{align*} f_X(x) &= f_{X \mid Z = 0}(x) \Pr[Z = 0] + f_{X \mid Z = 1}(x) \Pr[Z = 1] \\ &= \begin{cases}0, & x < 0 \\ \frac{3}{2}e^{-3x}, & 0 \le x < \frac{2}{3}, \\ \frac{3}{2}e^{-3x} + \frac{3}{2}e^{-3x+2}, & x \ge \frac{2}{3}. \end{cases} \end{align*}$$ The last part of the piecewise function can also be written as $\frac{3}{2}(1+e^2)e^{-3x}$. The expectation and variance are easily calculated because $Y$ and $Z$ are independent: $${\rm E}[X] = \tfrac{1}{3}{\rm E}[Y] + \tfrac{2}{3}{\rm E}[Z] = \tfrac{1}{3} \cdot 1 + \tfrac{2}{3}\cdot \tfrac{1}{2} = \tfrac{2}{3},$$ and $${\rm Var}[X] = \bigl(\tfrac{1}{3}\bigr)^2 {\rm Var}[Y] + \bigl(\tfrac{2}{3}\bigr)^2 {\rm Var}[Z] = \tfrac{1}{9} \cdot 1^2 + \tfrac{4}{9} \cdot \tfrac{1}{2} \bigl(1 - \tfrac{1}{2}\bigr) = \tfrac{2}{9}.$$