Difference between revisions of "Random Variable Distributions"

From Filebench
Jump to: navigation, search
(Created page with '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…')
 
(Uniform Distribution)
Line 11: Line 11:
 
EXPECTED: <math> (b - a) \over 2 </math>
 
EXPECTED: <math> (b - a) \over 2 </math>
  
 +
[[File:uniform-pdf.png]]
 +
[[File:uniform-cdf.png]]
  
 
== Exponential Distribution ==
 
== Exponential Distribution ==

Revision as of 15:43, 23 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>