How to calculate/approximate expectation of function of a binomial random variable?

1,193

I doubt that there are closed forms. If $n$ is not too large, you can just calculate the expected values as explicit sums. If $n$ is large and $p$ is not too close to $0$ or $1$, you could approximate the binomial distribution with a normal distribution, so your expected value is approximated by an integral. Again I doubt that there will be closed forms, but you might get asymptotics. Note that if you write $m = \mu + \sigma Z$ where $\mu = np$ and $\sigma = \sqrt{np(1-p)}$, you can expand a function $g(m)$ as a series $g(m) = g(\mu) + \sum_j c_j Z^j$ and try approximating $E[g(m)] = g(\mu) + \sum_j c_j E[Z^j]$ using a partial sum of the series.

Share:
1,193

Related videos on Youtube

navneet malani
Author by

navneet malani

Engineer in India

Updated on August 01, 2022

Comments

  • navneet malani
    navneet malani over 1 year

    I am stuck at following problem in my research.

    Suppose that $M=m$ is a random variable with binomial distribution and parameters $n,p$. The constants $r$ and $\gamma$ are greater than zero. $\mathcal{E} _M$ is the expectation operator with respect to $M$. I need to calculate following expectations: \begin{equation} \mathcal{E} _M \left[ \frac{m}{m+1} e^{ - \frac{2^{\frac{m+1}{m}\cdot r } - 1}{\gamma}} \right] \end{equation} and \begin{equation} \mathcal{E} _M \left[ \frac{m}{m+1} \left(e^{ - \frac{2^{\frac{m+1}{m}\cdot r } - 1}{\gamma}}\right)^{m-1} - \frac{m}{m+1} \left(e^{ - \frac{2^{\frac{m+1}{m}\cdot r } - 1}{\gamma}}\right)^{m} \right] \end{equation} The values of $r$ and $\gamma$ are such that the exponential function cannot be approximated.

    Can anyone please provide any guidance/reference for how to go about solving/approximating above expectations? Thanks in advance.

  • navneet malani
    navneet malani almost 12 years
    Robert... my work is related to Wireless communications... The typical value of r is between 0.3 to 0.8, the value of gamma is between 1 - 10, n is between 5 - 20 and p is between 0.01 - 0.2. Therefore I am not able to approximate them. However I am still working to see how much error, the approximations are introducing. I thank you for your suggestion and kind help.