Introduction to Discrete & Continuous Probability Distributions

 

1. What is a Probability Distribution?

A probability distribution describes how probabilities are distributed over the values of a random variable.

  • Random Variable: A variable whose values are outcomes of a random phenomenon.


馃М 2. Types of Probability Distributions

TypeDescriptionGIS Example
Discrete          Takes countable values Number of landslides per year in a          valley
Continuous         Takes infinite values over an                 intervalRainfall (mm), elevation, temperature 





馃搶 Discrete Probability Distributions


馃幆 3. Binomial Distribution

Definition:

Used when an experiment is repeated n times, and each trial has two outcomes: success or failure.

Conditions:

  1. Fixed number of trials (n)

  2. Only two possible outcomes per trial (success/failure)

  3. Constant probability of success (p)

  4. Trials are independent

Formula:

P(X=k)=(nk)pk(1p)nk

Where:

  • n: number of trials

  • k: number of successes

  • pp: probability of success

  • (nk)\binom{n}{k}: combination formula

馃搷 Example:

Suppose there’s a 0.3 chance that a village is at high flood risk. Out of 5 randomly selected villages, what is the probability exactly 2 are high risk?

n=5,k=2,p=0.3n = 5, \quad k = 2, \quad p = 0.3
P(X=2)=(52)(0.3)2(0.7)3=100.090.343=0.3087P(X = 2) = \binom{5}{2} (0.3)^2 (0.7)^3 = 10 \cdot 0.09 \cdot 0.343 = 0.3087

馃敘 4. Poisson Distribution

Definition:

Used to model the number of times an event occurs in a fixed interval of time or space, where events occur independently.

Conditions:

  1. Events occur one at a time

  2. Average rate \lambda is constant

  3. Events are independent

Formula:

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

Where:

  • \lambda: average number of occurrences

  • kk: actual number of occurrences

馃搷 Example:

On average, 3 landslides occur in a region each year. What is the probability there will be exactly 2 landslides in the coming year?

=3,k=2\lambda = 3, \quad k = 2
P(X=2)=e3322!=e3920.224P(X = 2) = \frac{e^{-3} \cdot 3^2}{2!} = \frac{e^{-3} \cdot 9}{2} \approx 0.224

馃搳 Continuous Probability Distributions

馃寪 5. Normal Distribution

Definition:

A continuous distribution that is symmetric and bell-shaped, representing many natural and measurement-based phenomena.

Conditions:

  1. Data is continuous

  2. Symmetric around the mean

  3. Mean = Median = Mode

  4. Follows the 68-95-99.7 rule

Formula (Probability Density Function):

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

Where:

  • \mu: mean

  • \sigma: standard deviation

馃搷 Example:

The average elevation of a region is 2,000 meters with a standard deviation of 200 meters.
We want to know the probability that a randomly chosen location has elevation between 1,800 and 2,200 meters.

This range is within ±1 standard deviation, so by the empirical rule,

P(1800X2200)68%P(1800 \leq X \leq 2200) \approx 68\%

馃幆 7. Applications in GIS

  • Binomial: Probability a satellite detects high NDVI in certain % of land

  • Poisson: Earthquake events in a seismic zone

  • Normal: Distribution of temperatures or rainfall across regions

Comments

Popular posts from this blog

Propositional Logic and Its Applications

Introduction to Probabilistic Modelling

Common Logical Fallacies