Geometric - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Statistics[Distributions]

  

Geometric

  

geometric distribution

 

Calling Sequence

Parameters

Description

Examples

References

Calling Sequence

Geometric(p)

GeometricDistribution(p)

Parameters

p

-

probability of success

Description

• 

The geometric distribution is a discrete probability distribution with probability function given by:

ft=0t<0p1ptotherwise

  

subject to the following conditions:

0<p,p1

• 

The geometric distribution has the lack of memory property: the probability of an event occurring in the next time interval of an exponential distribution is independent of the amount of time that has already passed.

• 

The geometric variate is a special case of the NegativeBinomial variate with number of trials parameter x=1.

• 

The continuous analog of the geometric variate is the Exponential variate.

• 

Note that the Geometric command is inert and should be used in combination with the RandomVariable command.

• 

There are two different but intimately related distributions that are frequently called geometric distributions, one of which is the distribution described on this help page. Let us call this the Maple definition. It is often defined by saying it describes the number of failures before the first success in a sequence of independent Bernoulli distributed trials. The other distribution often called the geometric distribution can then be defined as the number of trials up to and including the first success; let us call it the alternative definition.  If X is a random variable with the geometric distribution according to the Maple definition, then X+1 is a random variable with the geometric distribution (with the same value for the parameter p) according to the alternative definition. The alternative definition yields the following probability function:

gt=0t<1p1pt1otherwise

Examples

withStatistics&colon;

XRandomVariableGeometricp&colon;

ProbabilityFunctionX&comma;u

0u<0p1puotherwise

(1)

ProbabilityFunctionX&comma;2

p1p2

(2)

MeanX

1pp

(3)

VarianceX

1pp2

(4)

References

  

Evans, Merran; Hastings, Nicholas; and Peacock, Brian. Statistical Distributions. 3rd ed. Hoboken: Wiley, 2000.

  

Johnson, Norman L.; Kotz, Samuel; and Balakrishnan, N. Continuous Univariate Distributions. 2nd ed. 2 vols. Hoboken: Wiley, 1995.

  

Stuart, Alan, and Ord, Keith. Kendall's Advanced Theory of Statistics. 6th ed. London: Edward Arnold, 1998. Vol. 1: Distribution Theory.

See Also

Statistics

Statistics[Distributions]

Statistics[RandomVariable]