F A M X B.: Triangular Distribution (From
F A M X B.: Triangular Distribution (From
F A M X B.: Triangular Distribution (From
html)
The shorthand X ∼ triangular(a, m, b) is used to indicate that the random variable X has the tri-
angular distribution with parameters a, m and b. A triangular random variable X has probability
density function
2(x−a) a<x<m
(b−a)(m−a)
f (x) = 2(b−x)
(b−a)(b−m) m ≤ x < b.
The triangular distribution can be used as an approximate model when there are no data values.
An expert familiar with the population specifies a minium value a, a most likely value m, and a
maximum value b. The probability density function is illustrated below.
f (x)
x
a m b
1
The characteristic function of X is
2(−meita + beita + beitm + aeitm − aeitb + meitb )
φ(t) = E eitX = t > 0.
(a − m)(a − b)(m − b)t 2
a+m+b a2 + m2 + b2 − ab − am − mb
E[X] = V [X] =
3 18
" 3 # √ " 4 #
X −µ 2(a + b − 2m)(2a − b − m)(a − 2b + m) X −µ 12
E = E = .
σ 2 2 2
5(a + b + m − ab − am − bm) 3/2 σ 5
APPL verification: The APPL statements
X := TriangularRV(a, m, b);
CDF(X);
SF(X);
HF(X);
Mean(X);
Variance(X);
Skewness(X);
Kurtosis(X);
MGF(X);
verify the cumulative distribution function, survivor function, hazard function, population mean,
variance, skewness, kurtosis, and moment generating function.