NEOCODE
Back To Top

Unit-4: Special Continuous Distributions

1. Normal Distribution (Gaussian Distribution)

The Normal Distribution is a symmetric, bell-shaped distribution characterized by its mean (μ) and variance (σ²).

Probability Density Function (PDF):

f ( x ; μ , σ 2 ) = 1 2 π σ 2 · e - ( x - μ ) 2 2 σ 2

Graph of Normal Distribution (Bell Curve):

Cumulative Distribution Function (CDF):

F ( x ; μ , σ 2 ) = 1 2 · 1 + erf x - μ σ 2

Key Properties:

Moment Generating Function (MGF):

M X ( t ) = e μ t + 1 2 σ 2 t 2

Standard Deviation

Standard deviation (σ) is a measure of the dispersion or spread of data points around the mean (μ) in a distribution. It is the square root of the variance (σ2).

Formula

Population Standard Deviation:

σ = i=1 N (xi-μ) 2 N

Sample Standard Deviation:

s = i=1 n (xi-x¯) 2 n-1

Graphical Representation (Normal Distribution with Different σ):

Key Properties

Empirical Rule (For Normal Distributions)

Example Calculation

For dataset: [2, 4, 4, 4, 5, 5, 7, 9]

  1. Mean (x¯) = 5
  2. Squared deviations: [9, 1, 1, 1, 0, 0, 4, 16]
  3. Variance = 32 / 7 ≈ 4.57
  4. Standard deviation = √4.57 ≈ 2.14

2. Gamma Distribution

The Gamma Distribution is a two-parameter family of continuous distributions, often used to model waiting times or lifetimes.

Probability Density Function (PDF):

f ( x ; α , β ) = β α Γ ( α ) x α 1 e β x , for x > 0

Graph of Gamma Distribution:

Cumulative Distribution Function (CDF):

F(x;α, β)= γ(α, βx)Γ(α)

Key Properties:

Moment Generating Function (MGF):

M X ( t ) = ( 1 t β ) α , for t < β

3. Exponential Distribution

The Exponential Distribution is a special case of the Gamma Distribution (when α = 1). It models the time between events in a Poisson process.

Probability Density Function (PDF):

f(x; λ) = λe-λx, for x > 0

Graph of Exponential Distribution:

Cumulative Distribution Function (CDF):

F(x; λ) = 1 - e-λx, for x > 0

Key Properties:

Moment Generating Function (MGF):

MX(t) =λ(λ - t) , for t < λ

4. Moment Generating Functions (MGFs)

The Moment Generating Function (MGF) of a random variable X is defined as:

MX(t) = E[etX]

MGFs of the Distributions:

Distribution MGF
Normal MX(t) = eμt + (1/2)σ²t²
Gamma MX(t) = (1 - t/β), for t < β
Exponential MX(t) = λ / (λ - t), for t < λ

MCQ Questions

1. Which of the following is true for the Normal Distribution?

Answer: c) Both a) and b).

1. What does a high standard deviation indicate?

Answer: b) Data is spread out from the mean

2. The Exponential Distribution is a special case of which distribution?

Answer: b) Gamma Distribution