Class GammaDistribution

java.lang.Object
org.apache.commons.statistics.distribution.AbstractContinuousDistribution
org.apache.commons.statistics.distribution.GammaDistribution
All Implemented Interfaces:
ContinuousDistribution

public final class GammaDistribution extends AbstractContinuousDistribution
Implementation of the gamma distribution.

The probability density function of \( X \) is:

\[ f(x;k,\theta) = \frac{x^{k-1}e^{-x/\theta}}{\theta^k\Gamma(k)} \]

for \( k > 0 \) the shape, \( \theta > 0 \) the scale, \( \Gamma(k) \) is the gamma function and \( x \in (0, \infty) \).

See Also:
  • Field Details

    • SUPPORT_LO

      private static final double SUPPORT_LO
      Support lower bound.
      See Also:
    • SUPPORT_HI

      private static final double SUPPORT_HI
      Support upper bound.
      See Also:
    • shape

      private final double shape
      The shape parameter.
    • scale

      private final double scale
      The scale parameter.
    • minusLogGammaShapeMinusLogScale

      private final double minusLogGammaShapeMinusLogScale
      Precomputed term for the log density: -log(gamma(shape)) - log(scale).
    • mean

      private final double mean
      Cached value for inverse probability function.
    • variance

      private final double variance
      Cached value for inverse probability function.
  • Constructor Details

    • GammaDistribution

      private GammaDistribution(double shape, double scale)
      Parameters:
      shape - Shape parameter.
      scale - Scale parameter.
  • Method Details

    • of

      public static GammaDistribution of(double shape, double scale)
      Creates a gamma distribution.
      Parameters:
      shape - Shape parameter.
      scale - Scale parameter.
      Returns:
      the distribution
      Throws:
      IllegalArgumentException - if shape <= 0 or scale <= 0.
    • getShape

      public double getShape()
      Gets the shape parameter of this distribution.
      Returns:
      the shape parameter.
    • getScale

      public double getScale()
      Gets the scale parameter of this distribution.
      Returns:
      the scale parameter.
    • density

      public double density(double x)
      Returns the probability density function (PDF) of this distribution evaluated at the specified point x. In general, the PDF is the derivative of the CDF. If the derivative does not exist at x, then an appropriate replacement should be returned, e.g. Double.POSITIVE_INFINITY, Double.NaN, or the limit inferior or limit superior of the difference quotient.

      Returns the limit when x = 0:

      • shape < 1: Infinity
      • shape == 1: 1 / scale
      • shape > 1: 0
      Parameters:
      x - Point at which the PDF is evaluated.
      Returns:
      the value of the probability density function at x.
    • logDensity

      public double logDensity(double x)
      Returns the natural logarithm of the probability density function (PDF) of this distribution evaluated at the specified point x.

      Returns the limit when x = 0:

      • shape < 1: Infinity
      • shape == 1: -log(scale)
      • shape > 1: -Infinity
      Parameters:
      x - Point at which the PDF is evaluated.
      Returns:
      the logarithm of the value of the probability density function at x.
    • cumulativeProbability

      public double cumulativeProbability(double x)
      For a random variable X whose values are distributed according to this distribution, this method returns P(X <= x). In other words, this method represents the (cumulative) distribution function (CDF) for this distribution.
      Parameters:
      x - Point at which the CDF is evaluated.
      Returns:
      the probability that a random variable with this distribution takes a value less than or equal to x.
    • survivalProbability

      public double survivalProbability(double x)
      For a random variable X whose values are distributed according to this distribution, this method returns P(X > x). In other words, this method represents the complementary cumulative distribution function.

      By default, this is defined as 1 - cumulativeProbability(x), but the specific implementation may be more accurate.

      Parameters:
      x - Point at which the survival function is evaluated.
      Returns:
      the probability that a random variable with this distribution takes a value greater than x.
    • getMean

      public double getMean()
      Gets the mean of this distribution.

      For shape parameter \( k \) and scale parameter \( \theta \), the mean is \( k \theta \).

      Returns:
      the mean.
    • getVariance

      public double getVariance()
      Gets the variance of this distribution.

      For shape parameter \( k \) and scale parameter \( \theta \), the variance is \( k \theta^2 \).

      Returns:
      the variance.
    • getSupportLowerBound

      public double getSupportLowerBound()
      Gets the lower bound of the support. It must return the same value as inverseCumulativeProbability(0), i.e. \( \inf \{ x \in \mathbb R : P(X \le x) \gt 0 \} \).

      The lower bound of the support is always 0.

      Returns:
      0.
    • getSupportUpperBound

      public double getSupportUpperBound()
      Gets the upper bound of the support. It must return the same value as inverseCumulativeProbability(1), i.e. \( \inf \{ x \in \mathbb R : P(X \le x) = 1 \} \).

      The upper bound of the support is always positive infinity.

      Returns:
      positive infinity.
    • createSampler

      public ContinuousDistribution.Sampler createSampler(org.apache.commons.rng.UniformRandomProvider rng)
      Creates a sampler.
      Specified by:
      createSampler in interface ContinuousDistribution
      Overrides:
      createSampler in class AbstractContinuousDistribution
      Parameters:
      rng - Generator of uniformly distributed numbers.
      Returns:
      a sampler that produces random numbers according this distribution.