1

Johnstone and Silverman (2005) claimed that for large x

$\frac{1-\Phi(x)}{\phi(x)} \approx \frac{1}{x}$

where $\Phi(x)$ and $\phi(x)$ are the CDF and PDF for a normal random variable.

I was able to verify the claim numerically. Q: But how would I show this analytically? This seems like it should be easy, but I can't figure it out. Also, Q: Is there a symbolic logic system (e.g., Mathematica) that can generate these sort of approximations?

flag
1 
Hint: integration by parts in the integral for the CDF. This is a very standard trick for finding asymptotic approximations for many kinds of integrals. – Zen Harper Sep 5 2011 at 1:30
@Zen: Ahh, nice trick. Then you generate a power series in $1/x$---the one given by @Robert below. – brianjd Sep 5 2011 at 18:40

4 Answers

3

If you interpret this as the existence of the limit $$ \lim_{x \rightarrow \infty} \frac{x(1-\Phi(x))}{\phi(x)} $$ then it is easy to verify using l'Hopital's rule.

link|flag
@Deane: Ahh yes. Easy. I suspected. :( Second derivatives of numerator and denominator do the trick. – brianjd Sep 5 2011 at 18:19
3

In Maple:

with(Statistics): Phi:= CDF(Normal(0,1),x): phi:= PDF(Normal(0,1),x): asympt((1-Phi)/phi,x,10);

$\frac{1}{x} - \frac{1}{x^3} + \frac{3}{x^5} - \frac{15}{x^7} + \frac{105}{x^9} + O\left(\frac{1}{x^{11}}\right)$

See also http://oeis.org/A001147 for the sequence of coefficients

link|flag
@Robert. VERY useful. I must get Maple (or Mathematica). Thx! – brianjd Sep 5 2011 at 19:03
1

If $Y(x)=(1-\Phi(x))/\phi(x)$, it is easy to check that $Y'(x)=xY(x)-1$ and from this anything you like follows by standard methods.

link|flag
@Brendan. Then by L'hospital's rule on $Y'(x)$ we get that $\lim_{\infty}Y'(x)=0$ so that $\lim_{\infty}xY(x)=1$ or $Y(x) \approx \frac{1}{x}$ as x becomes large. Thx! – brianjd Sep 5 2011 at 19:01
2

Reproducing a lemma from the classic Feller book, first we can write

$$ (1-3x^{-4})\phi(x)<\phi(x)<(1+x^{-2})\phi(x). $$

Integrating this from $x$ to $+\infty$, we obtain

$$(x^{-1}-x^{-3})\phi(x)<1-\Phi(x)< x^{-1}\phi(x),$$

so you easily get an approximation rate $x^{-3}\phi(x)$, too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.