Difference between revisions of "Random Variable Distributions"

From Filebench
Jump to: navigation, search
(Log-normal Distribution)
Line 71: Line 71:
  
 
== Log-normal Distribution ==
 
== Log-normal Distribution ==
 +
 +
PDF: <math> f(x;\mu,\sigma) = {1 \over x \sqrt{2\pi\sigma}} e^{(ln x - \mu)^2 \over 2 \sigma^2}  </math>
 +
 +
CDF: <math> F(x;\mu,\sigma) = {1 \over 2} + {1 \over 2} erf \left[ {ln x - \mu \over \sigma \sqrt{2}}  \right]</math>
 +
 +
EXPECTED: <math> E(\mu, \sigma) = e^{\mu + {\sigma^2 \over 2}} </math>
  
 
[[File:Log-normal-PDF.png]]
 
[[File:Log-normal-PDF.png]]
 
[[File:Log-normal-CDF.png]]
 
[[File:Log-normal-CDF.png]]

Revision as of 00:23, 25 October 2013

This page describes random distributions supported by Filebench

Uniform Distribution

DOMAIN: [a;b]

PDF: <math> f(x; a, b) = {1 \over {b - a}} </math>

CDF: <math> F(x; a, b) = {x - a \over {b - a}} </math>

EXPECTED: <math> (b - a) \over 2 </math>

Uniform-pdf.png Uniform-cdf.png

Exponential Distribution

DOMAIN: <math> [0:+\infty) </math>

PDF: <math> f(x; \lambda) = \lambda e^{-\lambda x} </math>

CDF: <math> F(x; \lambda) = 1 - e^{-\lambda x} </math>

EXPECTED: <math> 1 \over \lambda </math>

Exponential-pdf.png Exponential-cdf.png

Erlang and Gamma Distributions

DOMAIN: <math> [0:+\infty) </math>

PDF: <math> f(x; k, \lambda) = {\lambda^{k} x^{k-1} e^{-\lambda x} \over \Gamma(k)} </math>

CDF: <math> F(x; k, \lambda) = {\gamma(k, \lambda x) \over \Gamma(k)} </math>

EXPECTED: <math> k \over \lambda </math>

In Erlang distribution <math>k</math> is an integer. In Gamma distribution <math>k</math> is a real number.

NOTICE: <math>\gamma()</math> above is a non-normalized incomplete gamma function. Gnuplot's <math>igamma()</math> function, however, is already normalized (i.e., divided by <math>\Gamma(k)</math>).

Erlang-Gamma-PDF.png Erlang-Gamma-CDF.png

Weibull Distribution

DOMAIN: <math> [0:+\infty] </math>

PDF: <math> f(x; k, \lambda) = {k \over \lambda} \left({x \over \lambda}\right)^{k - 1} e^{\left({- {x \over \lambda}}\right) ^ k} </math>

CDF: <math> f(x; k, \lambda) = 1 - e^{\left(-{x \over \lambda}\right)^k}</math>

EXPECTED: <math> \lambda \Gamma(1 + {1 \over k})</math>

Weibull-PDF.png Weibull-CDF.png

Normal Distribution

DOMAIN: <math> [-\infty:+\infty] </math>

PDF: <math> f(x; \mu, \sigma) = {1 \over \sigma \sqrt{2\pi}} e^{- {(x - \mu)^2 \over 2\sigma^2}} </math>

CDF: <math> f(x; \mu, \sigma) = {1 \over 2} \left[ 1 + erf\left({ x - \mu \over \sqrt{2 \sigma^2}}\right) \right] </math>

EXPECTED: <math> \mu </math>

Normal-PDF.png Normal-CDF.png

Log-normal Distribution

PDF: <math> f(x;\mu,\sigma) = {1 \over x \sqrt{2\pi\sigma}} e^{(ln x - \mu)^2 \over 2 \sigma^2} </math>

CDF: <math> F(x;\mu,\sigma) = {1 \over 2} + {1 \over 2} erf \left[ {ln x - \mu \over \sigma \sqrt{2}} \right]</math>

EXPECTED: <math> E(\mu, \sigma) = e^{\mu + {\sigma^2 \over 2}} </math>

Log-normal-PDF.png Log-normal-CDF.png