Continuous Probability Distributions

Recap: Probability Distribution

A probability distribution is a function or rule that describes how probability is spread across the possible values of a random variable.

I. What is a Continuous Probability Distribution?

A continuous probability distribution describes the probabilities of a continuous random variable X —one that can take any value within a range ‒ which can be infinite, and therefore uncountable. Examples include height, weight, or time.

II. Probability Density Function (PDF)

Since there are infinite possible values, we use a Probability Density Function (PDF) to describe the distribution.

★ Defination

The probability density function(PDF) is the function that represents the density of probability for a continuous random variable over the specified ranges.

🤔 Unlike a PMF, the value of the PDF at a specific point, f(x), is not the probability of that point. It is the density.

Learning/images/pdf-1.png|600

★ Key Formulas

  1. Probability Density Function (PDF): f(x), gives the density of probability at each value of x. Probability is represented by area under the curve. The probability that X falls within an interval [a,b] is the area under the curve between a and b: $$\large P(a \leq X \leq b) = \int_{a}^{b} f(x) , dx$$
  2. Cumulative Distribution Function (CDF): Calculates the area under the curve up to a certain point, representing the cumulative probability.
F(x)=P(Xx)=xf(t)dt
  1. Mean: (E[X] or μ) represents the "center of mass" or the long-term average of the distribution.
E[X]=xf(x)dx
  1. Variance: (Var(X) or σ2) measures the "spread" of the data around the mean. It is the average of the squared deviations from the mean.
Var(X)=x2f(x)dx

★ Key properties

  1. Non-negativity: The function can never be negative. You can't have a "negative density."
f(x)0 for all x
  1. Total area under the PDF curve is 1: The entire area under the curve and above the x-axis equals 1, representing 100% certainty that the variable will take a value within its possible range. $$\large \displaystyle \int^{\infty}_{-\infty} f(x) , dx = 1$$
  2. Probability of any exact value is zero: Since a continuous variable can take an infinite number of values within a range, the probability of it taking any specific single value is mathematically zero.$$P(X = a) = 0$$
  3. Outcomes are measured, not counted: Continuous variables represent measurable quantities like time, weight, or temperature, which can take any value within a given interval.
  4. The graph is a smooth curve: The distribution is visualized as a continuous, smooth curve rather than discrete bars.

★ Example: Waiting for a Bus (Uniform Distribution)

Scenario:
You arrive at a bus stop where a bus arrives every 20 minutes, but you don't know when the last one left. Your waiting time, X, is a random variable between 0 and 20 minutes.

Question:Whatistheprobabilityyouwaitbetween5and10minutes?Step1:Setuptheintegral

P(5 \leq X \leq 10) = \int_{5}^{10} \frac{1}{20} dx

Step2:CalculatetheareaWefindtheareaoftherectanglebetween$x=5$and$x=10$.$$P(5X10)=510120dx=120(105)=0.25

III. Common Continuous Distributions

1. Uniform Distribution

The Uniform distribution is the simplest continuous distribution. Every value in a specified range is equally likely.

uniform-1.png|599

Key properties

F(X)=xabawhere axb P(3X7)=37110dx=110×(73)=0.4

2. Normal (Gaussian) Distribution

3. Exponential Distribution

The Exponential Distribution is a continuous probability distribution that models the time or space between independent events occurring at a constant average rate, such as customer arrivals, radioactive decay, or machine failures. It is highly skewed, with small values being more frequent than large ones.
exp-1.gif

Formulas

F(x)=1eλx for x0

Key properties

Example:
Average time between customers is 5 minutes (λ=0.2 per minute).
Probability next customer arrives within 3 minutes:

P(X3)=1e0.2×3=1e0.60.451

Questions and Answers

Q1: What is the difference between the Poisson distribution and exponential distribution?
Poisson distribution deals with the number of occurrences of events in a fixed period of time, whereas the exponential distribution is a continuous probability distribution that often concerns the amount of time until some specific event happens.

Q2: Why is the exponential distribution memoryless?
The key property of the exponential distribution is memoryless as the past has no impact on its future event's occurance, and each instant is like the starting of the new random period.

Q3: What does lambda mean in the exponential distribution?
The lambda in exponential distribution represents the rate parameter, and it defines the mean number of events in an interval.


4. Beta Distribution (Advanced)

The Beta distribution is a continuous probability distribution often used to model the uncertainty about the probability of success of an experiment.
The Beta distribution can be used to analyze probabilistic experiments that have only two possible outcomes:

Key Properties and Formulas

beta-2.png

Binomial vs Beta

BINOMIAL DISTRIBUTION BETA DISTRIBUTION
Purpose Models the number of successes in a fixed number of trials. Models the probability of success in a probabilistic experiment.
Usecase Used when the probability of success is known and fixed Used when the probability of success is uncertain
Outcome Discrete distribution where outcomes are numbers Continuous distribution where outcomes lie in [0,1]
Formula $$f(x) = \binom{n}{k}; p^k (1-p)^{n-k}$$wheref(x)isfunctionofx $$g(p) = \frac{1}{B(\alpha, \beta)} ; p^{\alpha-1} (1-p)^{\beta-1}$$whereg(p)isfunctionofp