13 votos

¿Var(X) es sabido calcular el Var(1/X)?

Si tengo sólo el $\mathrm{Var}(X)$, ¿cómo puedo calcular $\mathrm{Var}(\frac{1}{X})$?

No tengo ninguna información sobre la distribución de $X$, así que no puedo usar transformación, o cualquier otro método que utilice la distribución de probabilidad de $X$.

20voto

AdamSane Puntos 1825

Puede utilizar la serie de Taylor para obtener una aproximación de la orden bajo momentos de una transformada variable aleatoria. Si la distribución es bastante 'apretado' alrededor de la media (en un sentido particular), la aproximación puede ser bastante bueno.

Así, por ejemplo,

$$g(X) = g(\mu) + (X-\mu) g'(\mu) + \frac{(X-\mu)^2}{2} g''(\mu) + \ldots$$

así

\begin{eqnarray} \text{Var}[g(X)] &=& \text{Var}[g(\mu) + (X-\mu) g'(\mu) + \frac{(X-\mu)^2}{2} g''(\mu) + \ldots]\\ &=& \text{Var}[(X-\mu) g'(\mu) + \frac{(X-\mu)^2}{2} g''(\mu) + \ldots]\\ &=& g'(\mu)^2 \text{Var}[(X-\mu)] + 2g'(\mu)\text{Cov}[(X-\mu),\frac{(X-\mu)^2}{2} g''(\mu) + \ldots] \\& &\quad+ \text{Var}[\frac{(X-\mu)^2}{2} g''(\mu) + \ldots]\\ \end{eqnarray}

a menudo sólo el primer término es tomado

$$\text{Var}[g(X)] \approx g'(\mu)^2 \text{Var}(X)$$

In this case (assuming I didn't make a mistake), with $g(X)=\frac{1}{X}$, $\text{Var}[\frac{1}{X}] \approx \frac{1}{\mu^4} \text{Var}(X)$.

Wikipedia: Taylor expansions for the moments of functions of random variables

---

Some examples to illustrate this. I'll generate two (gamma-distributed) samples in R, one with a 'not-so-tight' distribution about the mean and one a bit tighter.

 a <- rgamma(1000,10,1)  # mean and variance 10; the mean is not many sds from 0
 var(a)
[1] 10.20819  # reasonably close to the population variance

The approximation suggests the variance of $1/a$ should be close to $(1/10)^4 \veces 10 = 0.001$

 var(1/a)
[1] 0.00147171

Algebraic calculation has that the actual population variance is $1/648 \aprox 0.00154$

Now for the tighter one:

 a <- rgamma(1000,100,10) # should have mean 10 and variance 1
 var(a)
[1] 1.069147

The approximation suggests the variance of $1/a$ should be close to $(1/10)^4 \veces 1 = 0.0001$

 var(1/a)
[1] 0.0001122586

Algebraic calculation shows that the population variance of the reciprocal is $\frac{10^2}{99^2\los tiempos de 98} \approx 0.000104$.

18voto

alastairs Puntos 3281

Es imposible.

Considere la posibilidad de una secuencia $X_n$ de las variables aleatorias, donde

$$P(X_n=n-1)=P(X_n=n+1)=0.5$$

Entonces:

$$\newcommand{\Var}{\mathrm{Var}}\Var(X_n)=1 \quad \text{for all $n$}$$

Pero $\Var\left(\frac{1}{X_n}\right)$ se aproxima a cero como $n$ va al infinito:

$$\Var\left(\frac{1}{X_n}\right)=\left(0.5\left(\frac{1}{n+1}-\frac{1}{n-1}\right)\right)^2$$

En este ejemplo se utiliza el hecho de que $\Var(X)$ es invariante bajo traslaciones de $X$, pero $\Var\left(\frac{1}{X}\right)$ no lo es.

Pero incluso si asumimos $\mathrm{E}(X)=0$, no podemos computar $\Var\left(\frac{1}{X}\right)$: Vamos

$$P(X_n=-1)=P(X_n=1)=0.5\left(1-\frac{1}{n}\right)$$

y

$$P(X_n=0)=\frac{1}{n} \quad \text{for $n>0$} $$

A continuación, $\Var(X_n)$ enfoques de 1 $n$ va al infinito, sino $\Var\left(\frac{1}{X_n}\right)=\infty$ todos los $n$.

i-Ciencias.com

I-Ciencias es una comunidad de estudiantes y amantes de la ciencia en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X