Rectangular and Normal Distribution
Definition
In statistics, a theoretical distribution is a mathematical model that describes how probabilities are assigned to outcomes of a random variable. The Rectangular (Uniform) Distribution represents a scenario where all outcomes in a defined interval are equally likely. The Normal (Gaussian) Distribution represents a continuous probability distribution where most data points cluster around a central mean, creating a symmetric, bell-shaped curve.
Main Content
1. Rectangular (Uniform) Distribution
- A distribution where the probability density function is constant over a finite range $[a, b]$.
- Because every value has an equal chance of occurring, the graph appears as a flat horizontal line, resembling a rectangle.
Probability Density
|
f(x) |-------|
| |
|_______|_______
a b x
2. Normal (Gaussian) Distribution
- A bell-shaped curve that is perfectly symmetric around its mean ($\mu$).
- The total area under the curve is always equal to 1, and the mean, median, and mode are identical at the center.
Density
_---_
/ \
/ \
/ \
---|-------------|---
-3σ μ +3σ x
3. Relationship Between Distributions
- The Rectangular distribution is used for modeling random numbers where no bias exists (e.g., rolling a fair die).
- The Normal distribution is used for natural phenomena (e.g., human height, IQ scores) where most data points aggregate toward the average.
Working / Process
1. Identifying the Distribution Type
- Determine if the variable has a bounded, equal-probability range (Uniform) or an unbounded range with central clustering (Normal).
- Check the data symmetry: Uniform is flat; Normal is bell-shaped.
2. Calculating Probabilities for Rectangular Distribution
- Use the formula for the probability density: $f(x) = \frac{1}{b-a}$ for $a \le x \le b$.
- Calculate the area for a specific interval $[x_1, x_2]$ by multiplying the width $(x_2 - x_1)$ by the height $(\frac{1}{b-a})$.
3. Calculating Probabilities for Normal Distribution
- Convert raw data points into Z-scores using the formula: $Z = \frac{x - \mu}{\sigma}$.
- Consult the Standard Normal Distribution Table (Z-table) to find the probability (area under the curve) corresponding to the calculated Z-score.
Advantages / Applications
- Predictive Modeling: Normal distribution is the foundation for inferential statistics and hypothesis testing.
- Simulation: Rectangular distribution is essential in computer programming for generating random numbers and performing Monte Carlo simulations.
- Quality Control: Normal distribution helps identify outliers in manufacturing processes (e.g., if a part size falls 3 standard deviations from the mean, it is flagged as defective).
Summary
- The Rectangular distribution defines a scenario where every outcome within a range has an identical probability.
- The Normal distribution describes data that clusters around a central mean, following the Empirical Rule (68-95-99.7).
- While Rectangular distributions model randomness, Normal distributions model natural variation.
- Key terms: Mean ($\mu$), Standard Deviation ($\sigma$), Z-score, Probability Density Function (PDF), Symmetric Curve.