SlideShare a Scribd company logo
1 of 46
Download to read offline
Dr. Carlos Rodríguez Contreras
UNAM
Probability
Distributions
Probability Distributions
 A probability distribution is a mathematical function
that provides the probabilities of occurrence of
different possible outcomes in an experiment.
 In more technical terms, the probability distribution
is a description of a random phenomenon in terms of
the probabilities of events.
 For instance, if the random variable X is used to
denote the outcome of a coin toss ("the
experiment"), then the probability distribution of X
would take the value 0.5 for X = heads, and 0.5 for X =
tails.
Probability Distributions
 Random Variable
 Represents a possible numerical value from a random event
 Takes on different values based on chance
Random
Variables
Discrete
Random Variable
Continuous
Random Variable
Probability Distributions Gallery
 A discrete random variable is a variable that can
assume only a countable number of values
 Many possible outcomes:
 number of complaints per day
 number of TV’s in a household
 number of rings before the phone is answered
 Only two possible outcomes:
 gender: male or female
 defective: yes or no
Discrete Random Variables
Discrete Random Variables
 Can only assume a countable number of values
Examples:
– Roll a die twice
Let x be the number of times 4 comes up
(then x could be 0, 1, or 2 times)
– Toss a coin 5 times.
Let x be the number of heads
(then x = 0, 1, 2, 3, 4, or 5)
x Value Probability
0 1/4 = .25
1 2/4 = .50
2 1/4 = .25
Experiment: Toss 2 Coins. Let x = # heads.
T
T
Discrete Probability Distributions
4 possible outcomes
T
T
Probability Distribution
0 1 2 x
.50
.25
Probability
Discrete Probability Distributions
A videoclip by Ben Lambert
Examples of some of the most known
Discrete Probability Distributions
Bernoulli Distribution
 The Bernoulli distribution is a binomial distribution with n=1, and one instance
of a Bernoulli distribution is called a Bernoulli trial.
 One coin flip is a Bernoulli trial, for example.
Binomial Distribution
 The binomial distribution is a discrete probability distribution. It describes the
outcome of n independent trials in an experiment. Each trial is assumed to have
only two outcomes, either success or failure. If the probability of a successful
trial is p, then the probability of having x successful outcomes in an experiment
of n independent trials is as follows.
Binomial Distribution
 Suppose there are twelve multiple choice questions in an English class quiz. Each
question has five possible answers, and only one of them is correct. Find the
probability of having four or less correct answers if a student attempts to answer
every question at random.
 Solution
Since only one out of five possible answers is correct, the probability of
answering a question correctly by random is 1/5=0.2. We can find the probability
of having exactly 4 correct answers by random attempts as follows.
> dbinom(4, size=12, prob=0.2)
[1] 0.1329
Binomial Distribution
 To graph all possible results, we need a vector with all possibilities:
Geometric Distribution
 Geometric distributions model (some) discrete random variables. Typically, a
Geometric random variable is the number of trials required to obtain the first
failure, for example, the number of tosses of a coin until the first 'tail' is
obtained, or a process where components from a production line are tested, in
turn, until the first defective item is found.
 A discrete random variable X is said to follow a Geometric distribution with
parameter p, written X ~ Ge(p):
P(X=x) = px-1(1-p)x
where
x = 1, 2, 3, ...
p = success probability; 0 < p < 1
Geometric Distribution
 The trials must meet the following requirements:
 the total number of trials is potentially infinite;
 there are just two outcomes of each trial; success and failure;
 the outcomes of all the trials are statistically independent;
 all the trials have the same probability of success.
 The Geometric distribution is related to the Binomial distribution in that both
are based on independent trials in which the probability of success is constant
and equal to p. However, a Geometric random variable is the number of trials
until the first failure, whereas a Binomial random variable is the number of
successes in n trials.
Poisson Distribution
 The Poisson distribution is the probability distribution of independent event
occurrences in an interval. If λ is the mean occurrence per interval, then the
probability of having x occurrences within a given interval is:
Poisson Distribution
 If there are twelve cars crossing a bridge per minute on average, find the probability of
having seventeen or more cars crossing the bridge in a particular minute.
 Solution
The probability of having sixteen or less cars crossing the bridge in a particular minute is
given by the function ppois.
> ppois(16, lambda=12) # lower tail
[1] 0.89871
 Hence the probability of having seventeen or more cars crossing the bridge in a minute is
in the upper tail of the probability density function.
> ppois(16, lambda=12, lower=FALSE) # upper tail
[1] 0.10129
Poisson Distribution
 To graph all possible results, we need a vector with all possibilities:
Exponential Distribution
 The exponential distribution describes the arrival time of a randomly recurring
independent event sequence. If μ is the mean waiting time for the next event
recurrence, its probability density function is:
Exponential Distribution
 Suppose the mean checkout time of a supermarket cashier is three minutes. Find
the probability of a customer checkout being completed by the cashier in less
than two minutes.
 Solution
The checkout processing rate is equals to one divided by the mean checkout
completion time. Hence the processing rate is 1/3 checkouts per minute. We then
apply the function pexp of the exponential distribution with rate=1/3.
> pexp(2, rate=1/3)
[1] 0.48658
Exponential Distribution
 To graph density of probabilities, we need a vector with all possibilities:
Exponential Distribution
 To graph all possible results, we need a vector with all possibilities:
Continuous Probability Distributions
Continuous Random Variables
 A continuous random variable is a variable that can
assume any value on a continuum (can assume an
uncountable number of values)
 thickness of an item
 time required to complete a task
 temperature of a solution
 height, in inches
 These can potentially take on any value, depending
only on the ability to measure accurately.
Represented by a PDF (Probability Density
Function)
P(x) = Probability in a range of values
x’s are mutually exclusive
(no overlap)
x’s are collectively exhaustive
(nothing left out)
0 < P(x) < 1 for each range of x
S P(x) = 1
Continuous Probability Distributions
A videoclip by JBstatistics
The Normal Distribution
Normal Distribution PDF
 The normal distribution is defined by the following probability density function,
where μ is the population mean and σ2 is the variance.
Normal Distribution and CLT
 The normal distribution is important because of the Central Limit Theorem,
which states that the population of all possible samples of size n from a
population with mean μ and variance σ2 approaches a normal distribution with
mean μ and σ2∕n when n approaches infinity.
A videoclip by Ben Lambert...
Normal Distribution Props
‘Bell Shaped’
Symmetrical
Mean, Median and Mode are Equal
Location is determined by the mean, μ
Spread is determined by the standard
deviation, σ
The random variable has an infinite
theoretical range:
+ to - 
Mean
= Median
= Mode
x
f(x)
μ
σ
By varying the parameters μ and σ, we obtain different normal distributions
Many Normal Distributions
The Normal Distribution Shape
x
f(x)
μ
σ
Changing μ shifts the
distribution left or right.
Changing σ increases
or decreases the
spread.
A videoclip of Joshua Starmer from
StatQuest!!!
Finding Normal Probabilities
a b x
f(x)
P a x b( ) 
Probability is measured by the area
under the curve
Probability as the
Area Under the Curve
The total area under the curve is 1.0, and the curve is
symmetric, so half is above the mean, half is below
1.0)xP(  
f(x)
xμ
0.50.5
0.5μ)xP( =<<- ¥
0.5)xP(μ =¥<<
 If the data distribution is bell-shaped, then the
interval:
 contains about 68% of the values in the sample
The Empirical Rule
1σμ 
 If the data distribution is bell-shaped, then the
interval:
 contains about 95% of the values in the sample
The Empirical Rule
2σμ 
 If the data distribution is bell-shaped, then the
interval:
 contains about 99.7% of the values in the sample
The Empirical Rule
3σμ 
Importance of the Rule
 If a value is about 2 or more standard deviations
away from the mean in a normal distribution, then it
is far from the mean.
 The chance that a value that far or farther away from
the mean is highly unlikely, given that particular
mean and standard deviation.
Probability Distributions
A reinforcement
Let us try all these in
Work with empiricalRule.R
Normal Distribution Exercise
 Assume that the test scores of a college entrance exam fits a normal distribution.
Furthermore, the mean test score is 72, and the standard deviation is 15.2. What
is the percentage of students scoring 84 or more in the exam?
 Solution
We apply the function pnorm of the normal distribution with mean 72 and
standard deviation 15.2. Since we are looking for the percentage of students
scoring higher than 84, we are interested in the upper tail of the normal
distribution.
> pnorm(84, mean=72, sd=15.2, lower.tail=FALSE)
[1] 0.21492
Normal Distribution
Normal and proofs of normality
Work with NormalDist.R
Probability Distributions Overview

More Related Content

What's hot

Theory of probability and probability distribution
Theory of probability and probability distributionTheory of probability and probability distribution
Theory of probability and probability distributionpolscjp
 
Discrete distributions: Binomial, Poisson & Hypergeometric distributions
Discrete distributions:  Binomial, Poisson & Hypergeometric distributionsDiscrete distributions:  Binomial, Poisson & Hypergeometric distributions
Discrete distributions: Binomial, Poisson & Hypergeometric distributionsScholarsPoint1
 
Chapter 2 discrete_random_variable_2009
Chapter 2 discrete_random_variable_2009Chapter 2 discrete_random_variable_2009
Chapter 2 discrete_random_variable_2009ayimsevenfold
 
Introduction to random variables
Introduction to random variablesIntroduction to random variables
Introduction to random variablesHadley Wickham
 
Probability 4.1
Probability 4.1Probability 4.1
Probability 4.1herbison
 
Probability mass functions and probability density functions
Probability mass functions and probability density functionsProbability mass functions and probability density functions
Probability mass functions and probability density functionsAnkit Katiyar
 
Discrete Probability Distributions
Discrete Probability DistributionsDiscrete Probability Distributions
Discrete Probability Distributionsmandalina landy
 
Chapter 4 part2- Random Variables
Chapter 4 part2- Random VariablesChapter 4 part2- Random Variables
Chapter 4 part2- Random Variablesnszakir
 
Probability and Statistics
Probability and StatisticsProbability and Statistics
Probability and StatisticsMalik Sb
 
Chapter 1 random variables and probability distributions
Chapter 1   random variables and probability distributionsChapter 1   random variables and probability distributions
Chapter 1 random variables and probability distributionsAntonio F. Balatar Jr.
 
Module 5 Lecture Notes
Module 5 Lecture NotesModule 5 Lecture Notes
Module 5 Lecture NotesLumen Learning
 
Chapter 4 part3- Means and Variances of Random Variables
Chapter 4 part3- Means and Variances of Random VariablesChapter 4 part3- Means and Variances of Random Variables
Chapter 4 part3- Means and Variances of Random Variablesnszakir
 
Introduction to probability distributions-Statistics and probability analysis
Introduction to probability distributions-Statistics and probability analysis Introduction to probability distributions-Statistics and probability analysis
Introduction to probability distributions-Statistics and probability analysis Vijay Hemmadi
 
Chap05 continuous random variables and probability distributions
Chap05 continuous random variables and probability distributionsChap05 continuous random variables and probability distributions
Chap05 continuous random variables and probability distributionsJudianto Nugroho
 

What's hot (19)

Binomia ex 2
Binomia ex 2Binomia ex 2
Binomia ex 2
 
Theory of probability and probability distribution
Theory of probability and probability distributionTheory of probability and probability distribution
Theory of probability and probability distribution
 
Discrete distributions: Binomial, Poisson & Hypergeometric distributions
Discrete distributions:  Binomial, Poisson & Hypergeometric distributionsDiscrete distributions:  Binomial, Poisson & Hypergeometric distributions
Discrete distributions: Binomial, Poisson & Hypergeometric distributions
 
Chapter 2 discrete_random_variable_2009
Chapter 2 discrete_random_variable_2009Chapter 2 discrete_random_variable_2009
Chapter 2 discrete_random_variable_2009
 
Probability distributionv1
Probability distributionv1Probability distributionv1
Probability distributionv1
 
Introduction to random variables
Introduction to random variablesIntroduction to random variables
Introduction to random variables
 
Probability 4.1
Probability 4.1Probability 4.1
Probability 4.1
 
Probability mass functions and probability density functions
Probability mass functions and probability density functionsProbability mass functions and probability density functions
Probability mass functions and probability density functions
 
Continuous Random Variables
Continuous Random VariablesContinuous Random Variables
Continuous Random Variables
 
Discrete Probability Distributions
Discrete Probability DistributionsDiscrete Probability Distributions
Discrete Probability Distributions
 
Random variables
Random variablesRandom variables
Random variables
 
Chapter 4 part2- Random Variables
Chapter 4 part2- Random VariablesChapter 4 part2- Random Variables
Chapter 4 part2- Random Variables
 
Probability and Statistics
Probability and StatisticsProbability and Statistics
Probability and Statistics
 
Chapter 1 random variables and probability distributions
Chapter 1   random variables and probability distributionsChapter 1   random variables and probability distributions
Chapter 1 random variables and probability distributions
 
Module 5 Lecture Notes
Module 5 Lecture NotesModule 5 Lecture Notes
Module 5 Lecture Notes
 
Chapter 4 part3- Means and Variances of Random Variables
Chapter 4 part3- Means and Variances of Random VariablesChapter 4 part3- Means and Variances of Random Variables
Chapter 4 part3- Means and Variances of Random Variables
 
Probability
ProbabilityProbability
Probability
 
Introduction to probability distributions-Statistics and probability analysis
Introduction to probability distributions-Statistics and probability analysis Introduction to probability distributions-Statistics and probability analysis
Introduction to probability distributions-Statistics and probability analysis
 
Chap05 continuous random variables and probability distributions
Chap05 continuous random variables and probability distributionsChap05 continuous random variables and probability distributions
Chap05 continuous random variables and probability distributions
 

Similar to Probability Distributions Overview

BINOMIAL ,POISSON AND NORMAL DISTRIBUTION.pptx
BINOMIAL ,POISSON AND NORMAL DISTRIBUTION.pptxBINOMIAL ,POISSON AND NORMAL DISTRIBUTION.pptx
BINOMIAL ,POISSON AND NORMAL DISTRIBUTION.pptxletbestrong
 
Bernoullis Random Variables And Binomial Distribution
Bernoullis Random Variables And Binomial DistributionBernoullis Random Variables And Binomial Distribution
Bernoullis Random Variables And Binomial DistributionDataminingTools Inc
 
Bernoullis Random Variables And Binomial Distribution
Bernoullis Random Variables And Binomial DistributionBernoullis Random Variables And Binomial Distribution
Bernoullis Random Variables And Binomial Distributionmathscontent
 
Statistical Analysis with R- III
Statistical Analysis with R- IIIStatistical Analysis with R- III
Statistical Analysis with R- IIIAkhila Prabhakaran
 
Probability distribution for Dummies
Probability distribution for DummiesProbability distribution for Dummies
Probability distribution for DummiesBalaji P
 
2 Review of Statistics. 2 Review of Statistics.
2 Review of Statistics. 2 Review of Statistics.2 Review of Statistics. 2 Review of Statistics.
2 Review of Statistics. 2 Review of Statistics.WeihanKhor2
 
Quantitative Methods for Lawyers - Class #10 - Binomial Distributions, Normal...
Quantitative Methods for Lawyers - Class #10 - Binomial Distributions, Normal...Quantitative Methods for Lawyers - Class #10 - Binomial Distributions, Normal...
Quantitative Methods for Lawyers - Class #10 - Binomial Distributions, Normal...Daniel Katz
 
Theory of Probability-Bernoulli, Binomial, Passion
Theory of Probability-Bernoulli, Binomial, PassionTheory of Probability-Bernoulli, Binomial, Passion
Theory of Probability-Bernoulli, Binomial, Passionnarretorojeania22
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
random variation 9473 by jaideep.ppt
random variation 9473 by jaideep.pptrandom variation 9473 by jaideep.ppt
random variation 9473 by jaideep.pptBhartiYadav316049
 
Probability distribution
Probability distributionProbability distribution
Probability distributionRohit kumar
 
Module-2_Notes-with-Example for data science
Module-2_Notes-with-Example for data scienceModule-2_Notes-with-Example for data science
Module-2_Notes-with-Example for data sciencepujashri1975
 
The axiomatic power of Kolmogorov complexity
The axiomatic power of Kolmogorov complexity The axiomatic power of Kolmogorov complexity
The axiomatic power of Kolmogorov complexity lbienven
 
ISM_Session_5 _ 23rd and 24th December.pptx
ISM_Session_5 _ 23rd and 24th December.pptxISM_Session_5 _ 23rd and 24th December.pptx
ISM_Session_5 _ 23rd and 24th December.pptxssuser1eba67
 

Similar to Probability Distributions Overview (20)

BINOMIAL ,POISSON AND NORMAL DISTRIBUTION.pptx
BINOMIAL ,POISSON AND NORMAL DISTRIBUTION.pptxBINOMIAL ,POISSON AND NORMAL DISTRIBUTION.pptx
BINOMIAL ,POISSON AND NORMAL DISTRIBUTION.pptx
 
Bernoullis Random Variables And Binomial Distribution
Bernoullis Random Variables And Binomial DistributionBernoullis Random Variables And Binomial Distribution
Bernoullis Random Variables And Binomial Distribution
 
Bernoullis Random Variables And Binomial Distribution
Bernoullis Random Variables And Binomial DistributionBernoullis Random Variables And Binomial Distribution
Bernoullis Random Variables And Binomial Distribution
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distribution
 
Statistical Analysis with R- III
Statistical Analysis with R- IIIStatistical Analysis with R- III
Statistical Analysis with R- III
 
Probability distribution for Dummies
Probability distribution for DummiesProbability distribution for Dummies
Probability distribution for Dummies
 
2 Review of Statistics. 2 Review of Statistics.
2 Review of Statistics. 2 Review of Statistics.2 Review of Statistics. 2 Review of Statistics.
2 Review of Statistics. 2 Review of Statistics.
 
Probability Distribution
Probability DistributionProbability Distribution
Probability Distribution
 
Quantitative Methods for Lawyers - Class #10 - Binomial Distributions, Normal...
Quantitative Methods for Lawyers - Class #10 - Binomial Distributions, Normal...Quantitative Methods for Lawyers - Class #10 - Binomial Distributions, Normal...
Quantitative Methods for Lawyers - Class #10 - Binomial Distributions, Normal...
 
Theory of Probability-Bernoulli, Binomial, Passion
Theory of Probability-Bernoulli, Binomial, PassionTheory of Probability-Bernoulli, Binomial, Passion
Theory of Probability-Bernoulli, Binomial, Passion
 
1630 the binomial distribution
1630 the binomial distribution1630 the binomial distribution
1630 the binomial distribution
 
Probability distribution
Probability distributionProbability distribution
Probability distribution
 
Binomial probability distributions
Binomial probability distributions  Binomial probability distributions
Binomial probability distributions
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)
 
Inorganic CHEMISTRY
Inorganic CHEMISTRYInorganic CHEMISTRY
Inorganic CHEMISTRY
 
random variation 9473 by jaideep.ppt
random variation 9473 by jaideep.pptrandom variation 9473 by jaideep.ppt
random variation 9473 by jaideep.ppt
 
Probability distribution
Probability distributionProbability distribution
Probability distribution
 
Module-2_Notes-with-Example for data science
Module-2_Notes-with-Example for data scienceModule-2_Notes-with-Example for data science
Module-2_Notes-with-Example for data science
 
The axiomatic power of Kolmogorov complexity
The axiomatic power of Kolmogorov complexity The axiomatic power of Kolmogorov complexity
The axiomatic power of Kolmogorov complexity
 
ISM_Session_5 _ 23rd and 24th December.pptx
ISM_Session_5 _ 23rd and 24th December.pptxISM_Session_5 _ 23rd and 24th December.pptx
ISM_Session_5 _ 23rd and 24th December.pptx
 

Recently uploaded

Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 

Recently uploaded (20)

Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 

Probability Distributions Overview

  • 1. Dr. Carlos Rodríguez Contreras UNAM Probability Distributions
  • 2. Probability Distributions  A probability distribution is a mathematical function that provides the probabilities of occurrence of different possible outcomes in an experiment.  In more technical terms, the probability distribution is a description of a random phenomenon in terms of the probabilities of events.  For instance, if the random variable X is used to denote the outcome of a coin toss ("the experiment"), then the probability distribution of X would take the value 0.5 for X = heads, and 0.5 for X = tails.
  • 3. Probability Distributions  Random Variable  Represents a possible numerical value from a random event  Takes on different values based on chance Random Variables Discrete Random Variable Continuous Random Variable
  • 5.  A discrete random variable is a variable that can assume only a countable number of values  Many possible outcomes:  number of complaints per day  number of TV’s in a household  number of rings before the phone is answered  Only two possible outcomes:  gender: male or female  defective: yes or no Discrete Random Variables
  • 6. Discrete Random Variables  Can only assume a countable number of values Examples: – Roll a die twice Let x be the number of times 4 comes up (then x could be 0, 1, or 2 times) – Toss a coin 5 times. Let x be the number of heads (then x = 0, 1, 2, 3, 4, or 5)
  • 7. x Value Probability 0 1/4 = .25 1 2/4 = .50 2 1/4 = .25 Experiment: Toss 2 Coins. Let x = # heads. T T Discrete Probability Distributions 4 possible outcomes T T Probability Distribution 0 1 2 x .50 .25 Probability
  • 8. Discrete Probability Distributions A videoclip by Ben Lambert
  • 9. Examples of some of the most known Discrete Probability Distributions
  • 10. Bernoulli Distribution  The Bernoulli distribution is a binomial distribution with n=1, and one instance of a Bernoulli distribution is called a Bernoulli trial.  One coin flip is a Bernoulli trial, for example.
  • 11. Binomial Distribution  The binomial distribution is a discrete probability distribution. It describes the outcome of n independent trials in an experiment. Each trial is assumed to have only two outcomes, either success or failure. If the probability of a successful trial is p, then the probability of having x successful outcomes in an experiment of n independent trials is as follows.
  • 12. Binomial Distribution  Suppose there are twelve multiple choice questions in an English class quiz. Each question has five possible answers, and only one of them is correct. Find the probability of having four or less correct answers if a student attempts to answer every question at random.  Solution Since only one out of five possible answers is correct, the probability of answering a question correctly by random is 1/5=0.2. We can find the probability of having exactly 4 correct answers by random attempts as follows. > dbinom(4, size=12, prob=0.2) [1] 0.1329
  • 13. Binomial Distribution  To graph all possible results, we need a vector with all possibilities:
  • 14. Geometric Distribution  Geometric distributions model (some) discrete random variables. Typically, a Geometric random variable is the number of trials required to obtain the first failure, for example, the number of tosses of a coin until the first 'tail' is obtained, or a process where components from a production line are tested, in turn, until the first defective item is found.  A discrete random variable X is said to follow a Geometric distribution with parameter p, written X ~ Ge(p): P(X=x) = px-1(1-p)x where x = 1, 2, 3, ... p = success probability; 0 < p < 1
  • 15. Geometric Distribution  The trials must meet the following requirements:  the total number of trials is potentially infinite;  there are just two outcomes of each trial; success and failure;  the outcomes of all the trials are statistically independent;  all the trials have the same probability of success.  The Geometric distribution is related to the Binomial distribution in that both are based on independent trials in which the probability of success is constant and equal to p. However, a Geometric random variable is the number of trials until the first failure, whereas a Binomial random variable is the number of successes in n trials.
  • 16. Poisson Distribution  The Poisson distribution is the probability distribution of independent event occurrences in an interval. If λ is the mean occurrence per interval, then the probability of having x occurrences within a given interval is:
  • 17. Poisson Distribution  If there are twelve cars crossing a bridge per minute on average, find the probability of having seventeen or more cars crossing the bridge in a particular minute.  Solution The probability of having sixteen or less cars crossing the bridge in a particular minute is given by the function ppois. > ppois(16, lambda=12) # lower tail [1] 0.89871  Hence the probability of having seventeen or more cars crossing the bridge in a minute is in the upper tail of the probability density function. > ppois(16, lambda=12, lower=FALSE) # upper tail [1] 0.10129
  • 18. Poisson Distribution  To graph all possible results, we need a vector with all possibilities:
  • 19. Exponential Distribution  The exponential distribution describes the arrival time of a randomly recurring independent event sequence. If μ is the mean waiting time for the next event recurrence, its probability density function is:
  • 20. Exponential Distribution  Suppose the mean checkout time of a supermarket cashier is three minutes. Find the probability of a customer checkout being completed by the cashier in less than two minutes.  Solution The checkout processing rate is equals to one divided by the mean checkout completion time. Hence the processing rate is 1/3 checkouts per minute. We then apply the function pexp of the exponential distribution with rate=1/3. > pexp(2, rate=1/3) [1] 0.48658
  • 21. Exponential Distribution  To graph density of probabilities, we need a vector with all possibilities:
  • 22. Exponential Distribution  To graph all possible results, we need a vector with all possibilities:
  • 24. Continuous Random Variables  A continuous random variable is a variable that can assume any value on a continuum (can assume an uncountable number of values)  thickness of an item  time required to complete a task  temperature of a solution  height, in inches  These can potentially take on any value, depending only on the ability to measure accurately.
  • 25. Represented by a PDF (Probability Density Function) P(x) = Probability in a range of values x’s are mutually exclusive (no overlap) x’s are collectively exhaustive (nothing left out) 0 < P(x) < 1 for each range of x S P(x) = 1 Continuous Probability Distributions
  • 26. A videoclip by JBstatistics
  • 28. Normal Distribution PDF  The normal distribution is defined by the following probability density function, where μ is the population mean and σ2 is the variance.
  • 29. Normal Distribution and CLT  The normal distribution is important because of the Central Limit Theorem, which states that the population of all possible samples of size n from a population with mean μ and variance σ2 approaches a normal distribution with mean μ and σ2∕n when n approaches infinity.
  • 30. A videoclip by Ben Lambert...
  • 31. Normal Distribution Props ‘Bell Shaped’ Symmetrical Mean, Median and Mode are Equal Location is determined by the mean, μ Spread is determined by the standard deviation, σ The random variable has an infinite theoretical range: + to -  Mean = Median = Mode x f(x) μ σ
  • 32. By varying the parameters μ and σ, we obtain different normal distributions Many Normal Distributions
  • 33. The Normal Distribution Shape x f(x) μ σ Changing μ shifts the distribution left or right. Changing σ increases or decreases the spread.
  • 34. A videoclip of Joshua Starmer from StatQuest!!!
  • 35. Finding Normal Probabilities a b x f(x) P a x b( )  Probability is measured by the area under the curve
  • 36. Probability as the Area Under the Curve The total area under the curve is 1.0, and the curve is symmetric, so half is above the mean, half is below 1.0)xP(   f(x) xμ 0.50.5 0.5μ)xP( =<<- ¥ 0.5)xP(μ =¥<<
  • 37.  If the data distribution is bell-shaped, then the interval:  contains about 68% of the values in the sample The Empirical Rule 1σμ 
  • 38.  If the data distribution is bell-shaped, then the interval:  contains about 95% of the values in the sample The Empirical Rule 2σμ 
  • 39.  If the data distribution is bell-shaped, then the interval:  contains about 99.7% of the values in the sample The Empirical Rule 3σμ 
  • 40. Importance of the Rule  If a value is about 2 or more standard deviations away from the mean in a normal distribution, then it is far from the mean.  The chance that a value that far or farther away from the mean is highly unlikely, given that particular mean and standard deviation.
  • 42. Let us try all these in Work with empiricalRule.R
  • 43. Normal Distribution Exercise  Assume that the test scores of a college entrance exam fits a normal distribution. Furthermore, the mean test score is 72, and the standard deviation is 15.2. What is the percentage of students scoring 84 or more in the exam?  Solution We apply the function pnorm of the normal distribution with mean 72 and standard deviation 15.2. Since we are looking for the percentage of students scoring higher than 84, we are interested in the upper tail of the normal distribution. > pnorm(84, mean=72, sd=15.2, lower.tail=FALSE) [1] 0.21492
  • 45. Normal and proofs of normality Work with NormalDist.R