A simple method for generating gamma variables

  • Authors:
  • George Marsaglia;Wai Wan Tsang

  • Affiliations:
  • Florida State Univ., Tallahassee;Univ. of Hong Kong, Hong Kong

  • Venue:
  • ACM Transactions on Mathematical Software (TOMS)
  • Year:
  • 2000

Quantified Score

Hi-index 0.00

Visualization

Abstract

We offer a procedure for generating a gamma variate as the cube of a suitably scaled normal variate. It is fast and simple, assuming one has a fast way to generate normal variables. In brief: generate a normal variate x and a uniform variate U until In (U)x2 + d - dv + dln(italicv), then return dv. Here, the gamma parameter is &agr; ≥ 1, and v = (1 + x/ *** with d = &agr; - 1/3. The efficiency is high, exceeding 0.951, 0.981, 0.992, 0.996 at &agr; = 1,2,4,8. The procedure can be made to run faster by means of a simple squeeze that avoids the two logarithms most of the time; return dv if U x4. We give a short C program for any &agr; ≥ 1, and show how to boost an &agr; 1. The gamma procedure is particularly fst for C implementation if the normal variate is generated in-line, via the #define feature. We include such an inline version, based on our ziggurat method. With it, and an inline uniform generator, gamma variates can be produced in 400MHz CPUs at better than 1.3 million per second, with the parameter &agr; changing from call to call.