Solved – Tail probability for heavy tailed distributions

cauchy distributiondistributionsfat-tailslognormal distributionprobability

For some data (where I have the mean and standard deviation) I currently estimate the probability of getting samples greater than some x by using the Q function; i.e., I'm calculating the tail probabilities. But this assumes a normal (Gaussian) distribution of my data, and I may be better off assuming a heavy tailed distribution, like log-normal or Cauchy. How can I calculate the tail probabilities for heavy tailed distributions?

Best Answer

The Wikipedia article you linked shows that the Q-function is just 1 minus the cumulative distribution function (CDF) of the normal distribution. Every distribution has its own CDF. So just use the CDF for the distribution in question. In R, for example, 1 - pcauchy(5) tells you the probability of getting 5 or more from a standard Cauchy distribution.

Related Question