Econometric Insights (Part III)

Common Statistical Distributions in Nature

EC3133

2024-11-29

Normal Distribution (Gaussian)

Common Occurrences Normal Distribution in Nature

Mathematical Formula

\[ f(x) = \frac{1}{\sigma\sqrt{2\pi}} e^{-\frac{(x-\mu)^2}{2\sigma^2}} \]

Why It Occurs

Poisson Distribution

Mathematical Formula

\[ P(X = k) = \frac{\lambda^k e^{-\lambda}}{k!} \]

Common Occurrences Poisson Distribution in Nature

Gamma Distribution

Common Occurrences of Gamma Distribution in Nature

Mathematical Formula

\[ f(x) = \frac{\beta^\alpha x^{\alpha-1} e^{-\beta x}}{\Gamma(\alpha)} \]

Lognormal Distribution

Mathematical Formula

\[ f(x) = \frac{1}{x\sigma\sqrt{2\pi}} e^{-\frac{(\ln x-\mu)^2}{2\sigma^2}} \]

Common Occurrences of Lognormal Distribution in Nature

Uniform Distribution

Mathematical Formula

\[ f(x) = \begin{cases} \frac{1}{b-a} & \text{for } a \leq x \leq b \\ 0 & \text{otherwise} \end{cases} \]

Common Occurrences of Uniform Distribution in Nature

Practical Examples: Normal Distribution

Practical Examples: Poisson Distribution

Statistical Tests and Applications

How do we choose the right distribution?

Important Considerations

Real-World Examples

Random Variables in Daily Life

  1. Weather Temperature
    • The daily high temperature in your city is a random variable
    • Each day’s temperature is an outcome that we can’t predict with certainty
plot(daily_temps, type = 'l', main = 'Daily Temperatures for a Month',
     xlab = 'Day', ylab = 'Temperature (°F)')

  1. Customer Wait Times
    • The time customers wait in line at a coffee shop is a random variable
    • Each customer’s wait time is an outcome influenced by many random factors

Probability Distributions in Practice

  1. Height Distribution in a Population
    • Heights in a population typically follow a normal (bell-shaped) distribution
    • This means most people are close to average height, with fewer people being very tall or very short

  1. Number of Customers per Hour
    • The number of customers arriving at a store follows a Poisson distribution
    • This distribution is good for counting events that occur randomly over time

Estimation in Real Life

  1. Estimating Average Monthly Spending
    • You want to know your average monthly spending
    • You look at your last 6 months of expenses to estimate it
## Monthly expenses: 1831.857 1930.947 2467.612 2021.153 2038.786 2514.519 \
## Estimated average monthly spending: 2134.146
  1. Election Polling
    • Pollsters estimate the percentage of voters who support a candidate
    • They survey a sample of voters to estimate the true population proportion
## True support: 52 %\
## Poll estimate: 53.2 %

Key Takeaways

  1. Random Variables
    • Are quantities that take random values
    • Examples: dice rolls, temperatures, wait times, heights
    • We can’t predict their exact values, but we can describe their patterns
  2. Probability Distributions
    • Show how likely different values are
    • Different shapes for different types of data
    • Examples: normal (heights), Poisson (arrivals), exponential (wait times)
  3. Estimation
    • Using sample data to guess population values
    • More data usually means better estimates
    • Always involves some uncertainty
    • Examples: polls, surveys, sample means