Random Variables and Distributions - Applications
Random variable transformations and distribution relationships provide powerful tools for deriving new distributions from known ones. These connections simplify calculations and reveal deep mathematical structure.
Probability Integral Transform
Let be a continuous random variable with CDF (assumed strictly increasing and continuous). Then:
Conversely, if , then: has CDF .
Proof: Let . For :
This is the CDF of Uniform. □
Inverse Transform Sampling: To generate samples from any distribution using a standard uniform random number generator:
- Generate
- Return
For : , so:
Since when does, we can use .
Order Statistics
Given random variables , the order statistics are the values arranged in increasing order.
- (minimum)
- (maximum)
- is the -th smallest value
If are IID with PDF and CDF , then has PDF:
For uniform random variables on :
- (minimum) has PDF
- (maximum) has PDF
- The median has a more complex distribution
Box-Muller Transform
If are independent, then:
are independent standard normal random variables: .
This elegant result provides a method to generate normal random variables from uniform ones.
Reliability and Hazard Functions
For a non-negative random variable (e.g., lifetime):
The reliability function (survival function) is:
The hazard function (failure rate) is:
The hazard function represents the instantaneous failure rate given survival to time .
For :
The constant hazard rate reflects the memoryless property: the failure rate doesn't depend on age.
For the Weibull distribution with shape parameter :
- : decreasing failure rate (infant mortality)
- : constant failure rate (exponential distribution)
- : increasing failure rate (wear-out failures)
These transformations and relationships form a toolkit for both theoretical analysis and practical simulation. The probability integral transform enables Monte Carlo simulation, order statistics are central to non-parametric statistics, and hazard functions are fundamental in reliability engineering and survival analysis.