SlideShare a Scribd company logo
The Binomial Distribution
October 20, 2010
The Binomial Distribution
Bernoulli Trials
Definition
A Bernoulli trial is a random experiment in which there are only
two possible outcomes - success and failure.
1 Tossing a coin and considering heads as success and tails as
failure.
The Binomial Distribution
Bernoulli Trials
Definition
A Bernoulli trial is a random experiment in which there are only
two possible outcomes - success and failure.
1 Tossing a coin and considering heads as success and tails as
failure.
2 Checking items from a production line: success = not
defective, failure = defective.
The Binomial Distribution
Bernoulli Trials
Definition
A Bernoulli trial is a random experiment in which there are only
two possible outcomes - success and failure.
1 Tossing a coin and considering heads as success and tails as
failure.
2 Checking items from a production line: success = not
defective, failure = defective.
3 Phoning a call centre: success = operator free; failure = no
operator free.
The Binomial Distribution
Bernoulli Random Variables
A Bernoulli random variable X takes the values 0 and 1 and
P(X = 1) = p
P(X = 0) = 1 − p.
It can be easily checked that the mean and variance of a Bernoulli
random variable are
E(X) = p
V (X) = p(1 − p).
The Binomial Distribution
Binomial Experiments
Consider the following type of random experiment:
1 The experiment consists of n repeated Bernoulli trials - each
trial has only two possible outcomes labelled as success and
failure;
The Binomial Distribution
Binomial Experiments
Consider the following type of random experiment:
1 The experiment consists of n repeated Bernoulli trials - each
trial has only two possible outcomes labelled as success and
failure;
2 The trials are independent - the outcome of any trial has no
effect on the probability of the others;
The Binomial Distribution
Binomial Experiments
Consider the following type of random experiment:
1 The experiment consists of n repeated Bernoulli trials - each
trial has only two possible outcomes labelled as success and
failure;
2 The trials are independent - the outcome of any trial has no
effect on the probability of the others;
3 The probability of success in each trial is constant which we
denote by p.
The Binomial Distribution
The Binomial Distribution
Definition
The random variable X that counts the number of successes, k, in
the n trials is said to have a binomial distribution with parameters
n and p, written bin(k; n, p).
The probability mass function of a binomial random variable X
with parameters n and p is
The Binomial Distribution
The Binomial Distribution
Definition
The random variable X that counts the number of successes, k, in
the n trials is said to have a binomial distribution with parameters
n and p, written bin(k; n, p).
The probability mass function of a binomial random variable X
with parameters n and p is
f (k) = P(X = k) =
n
k
pk
(1 − p)n−k
for k = 0, 1, 2, 3, . . . , n.
The Binomial Distribution
The Binomial Distribution
Definition
The random variable X that counts the number of successes, k, in
the n trials is said to have a binomial distribution with parameters
n and p, written bin(k; n, p).
The probability mass function of a binomial random variable X
with parameters n and p is
f (k) = P(X = k) =
n
k
pk
(1 − p)n−k
for k = 0, 1, 2, 3, . . . , n.
n
k counts the number of outcomes that include exactly k
successes and n − k failures.
The Binomial Distribution
Binomial Distribution - Examples
Example
A biased coin is tossed 6 times. The probability of heads on any
toss is 0.3. Let X denote the number of heads that come up.
Calculate:
(i) P(X = 2)
(ii) P(X = 3)
(iii) P(1 < X ≤ 5).
The Binomial Distribution
Binomial Distribution - Examples
Example
(i) If we call heads a success then this X has a binomial
distribution with parameters n = 6 and p = 0.3.
P(X = 2) =
6
2
(0.3)2
(0.7)4
= 0.324135
The Binomial Distribution
Binomial Distribution - Examples
Example
(i) If we call heads a success then this X has a binomial
distribution with parameters n = 6 and p = 0.3.
P(X = 2) =
6
2
(0.3)2
(0.7)4
= 0.324135
(ii)
P(X = 3) =
6
3
(0.3)3
(0.7)3
= 0.18522.
(iii) We need P(1 < X ≤ 5)
The Binomial Distribution
Binomial Distribution - Examples
Example
(i) If we call heads a success then this X has a binomial
distribution with parameters n = 6 and p = 0.3.
P(X = 2) =
6
2
(0.3)2
(0.7)4
= 0.324135
(ii)
P(X = 3) =
6
3
(0.3)3
(0.7)3
= 0.18522.
(iii) We need P(1 < X ≤ 5)
P(X = 2) + P(X = 3) + P(X = 4) + P(X = 5)
= 0.324 + 0.185 + 0.059 + 0.01
= 0.578
The Binomial Distribution
Binomial Distribution - Example
Example
A quality control engineer is in charge of testing whether or not
90% of the DVD players produced by his company conform to
specifications. To do this, the engineer randomly selects a batch of
12 DVD players from each day’s production. The day’s production
is acceptable provided no more than 1 DVD player fails to meet
specifications. Otherwise, the entire day’s production has to be
tested.
(i) What is the probability that the engineer incorrectly passes a
day’s production as acceptable if only 80% of the day’s DVD
players actually conform to specification?
(ii) What is the probability that the engineer unnecessarily
requires the entire day’s production to be tested if in fact 90%
of the DVD players conform to specifications?
The Binomial Distribution
Example
Example
(i) Let X denote the number of DVD players in the sample that
fail to meet specifications. In part (i) we want P(X ≤ 1) with
binomial parameters n = 12, p = 0.2.
P(X ≤ 1) = P(X = 0) + P(X = 1)
=
12
0
(0.2)0
(0.8)12
+
12
1
(0.2)1
(0.8)11
= 0.069 + 0.206 = 0.275
The Binomial Distribution
Example
Example
(ii) We now want P(X > 1) with parameters n = 12, p = 0.1.
P(X ≤ 1) = P(X = 0) + P(X = 1)
=
12
0
(0.1)0
(0.9)12
+
12
1
(0.1)1
(0.9)11
= 0.659
So P(X > 1) = 0.341.
The Binomial Distribution
Binomial Distribution - Mean and Variance
1 Any random variable with a binomial distribution X with
parameters n and p is a sum of n independent Bernoulli
random variables in which the probability of success is p.
X = X1 + X2 + · · · + Xn.
The Binomial Distribution
Binomial Distribution - Mean and Variance
1 Any random variable with a binomial distribution X with
parameters n and p is a sum of n independent Bernoulli
random variables in which the probability of success is p.
X = X1 + X2 + · · · + Xn.
2 The mean and variance of each Xi can easily be calculated as:
E(Xi ) = p, V (Xi ) = p(1 − p).
The Binomial Distribution
Binomial Distribution - Mean and Variance
1 Any random variable with a binomial distribution X with
parameters n and p is a sum of n independent Bernoulli
random variables in which the probability of success is p.
X = X1 + X2 + · · · + Xn.
2 The mean and variance of each Xi can easily be calculated as:
E(Xi ) = p, V (Xi ) = p(1 − p).
3 Hence the mean and variance of X are given by (remember
the Xi are independent)
E(X) = np, V (X) = np(1 − p).
The Binomial Distribution
Binomial Distribution - Examples
Example
Bits are sent over a communications channel in packets of 12. If
the probability of a bit being corrupted over this channel is 0.1 and
such errors are independent, what is the probability that no more
than 2 bits in a packet are corrupted?
If 6 packets are sent over the channel, what is the probability that
at least one packet will contain 3 or more corrupted bits?
Let X denote the number of packets containing 3 or more
corrupted bits. What is the probability that X will exceed its mean
by more than 2 standard deviations?
The Binomial Distribution
Binomial Distribution - Examples
Example
Let C denote the number of corrupted bits in a packet. Then in
the first question, we want
P(C ≤ 2) = P(C = 0) + P(C = 1) + P(C = 2).
The Binomial Distribution
Binomial Distribution - Examples
Example
Let C denote the number of corrupted bits in a packet. Then in
the first question, we want
P(C ≤ 2) = P(C = 0) + P(C = 1) + P(C = 2).
P(C = 0) =
12
0
(0.1)0
(0.9)12
= 0.282
The Binomial Distribution
Binomial Distribution - Examples
Example
Let C denote the number of corrupted bits in a packet. Then in
the first question, we want
P(C ≤ 2) = P(C = 0) + P(C = 1) + P(C = 2).
P(C = 0) =
12
0
(0.1)0
(0.9)12
= 0.282
P(C = 1) =
12
1
(0.1)1
(0.9)11
= 0.377
P(C = 2) =
12
2
(0.1)2
(0.9)10
= 0.23
The Binomial Distribution
Binomial Distribution - Examples
Example
Let C denote the number of corrupted bits in a packet. Then in
the first question, we want
P(C ≤ 2) = P(C = 0) + P(C = 1) + P(C = 2).
P(C = 0) =
12
0
(0.1)0
(0.9)12
= 0.282
P(C = 1) =
12
1
(0.1)1
(0.9)11
= 0.377
P(C = 2) =
12
2
(0.1)2
(0.9)10
= 0.23
So P(C ≤ 2) = 0.282 + 0.377 + 0.23 = 0.889.
The Binomial Distribution
Binomial Distribution - Examples
Example
The probability of a packet containing 3 or more corrupted bits is
1 − 0.889 = 0.111.
Let X be the number of packets containing 3 or more corrupted
bits. X can be modelled with a binomial distribution with
parameters n = 6, p = 0.111. The probability that at least one
packet will contain 3 or more corrupted bits is:
The Binomial Distribution
Binomial Distribution - Examples
Example
The probability of a packet containing 3 or more corrupted bits is
1 − 0.889 = 0.111.
Let X be the number of packets containing 3 or more corrupted
bits. X can be modelled with a binomial distribution with
parameters n = 6, p = 0.111. The probability that at least one
packet will contain 3 or more corrupted bits is:
1 − P(X = 0) = 1 −
6
0
(0.111)0
(0.889)6
= 0.494.
The Binomial Distribution
Binomial Distribution - Examples
Example
The probability of a packet containing 3 or more corrupted bits is
1 − 0.889 = 0.111.
Let X be the number of packets containing 3 or more corrupted
bits. X can be modelled with a binomial distribution with
parameters n = 6, p = 0.111. The probability that at least one
packet will contain 3 or more corrupted bits is:
1 − P(X = 0) = 1 −
6
0
(0.111)0
(0.889)6
= 0.494.
The mean of X is µ = 6(0.111) = 0.666 and its standard deviation
is σ = 6(0.111)(0.889) = 0.77.
The Binomial Distribution
Binomial Distribution - Examples
So the probability that X exceeds its mean by more than 2
standard deviations is P(X − µ > 2σ) = P(X > 2.2).
As X is discrete, this is equal to
The Binomial Distribution
Binomial Distribution - Examples
So the probability that X exceeds its mean by more than 2
standard deviations is P(X − µ > 2σ) = P(X > 2.2).
As X is discrete, this is equal to
P(X ≥ 3)
The Binomial Distribution
Binomial Distribution - Examples
So the probability that X exceeds its mean by more than 2
standard deviations is P(X − µ > 2σ) = P(X > 2.2).
As X is discrete, this is equal to
P(X ≥ 3)
P(X = 1) =
6
1
(0.111)1
(0.889)5
= 0.37
P(X = 2) =
6
2
(0.111)2
(0.889)4
= 0.115.
So P(X ≥ 3) = 1 − (.506 + .37 + .115) = 0.009.
The Binomial Distribution

More Related Content

What's hot

Resource conservation techniques_in_rice_wheat_cropping_system
Resource conservation techniques_in_rice_wheat_cropping_systemResource conservation techniques_in_rice_wheat_cropping_system
Resource conservation techniques_in_rice_wheat_cropping_system
Deep Prabha
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distribution
numanmunir01
 
Orthogonal Property of Standard Design/Orthogonality of Design and Factorial ...
Orthogonal Property of Standard Design/Orthogonality of Design and Factorial ...Orthogonal Property of Standard Design/Orthogonality of Design and Factorial ...
Orthogonal Property of Standard Design/Orthogonality of Design and Factorial ...
Hasnat Israq
 
PG STAT 531 Lecture 5 Probability Distribution
PG STAT 531 Lecture 5 Probability DistributionPG STAT 531 Lecture 5 Probability Distribution
PG STAT 531 Lecture 5 Probability Distribution
Aashish Patel
 
Determination potassium by_ammonium_acetate_extraction_method_zahid_sau_sylhet
Determination potassium by_ammonium_acetate_extraction_method_zahid_sau_sylhetDetermination potassium by_ammonium_acetate_extraction_method_zahid_sau_sylhet
Determination potassium by_ammonium_acetate_extraction_method_zahid_sau_sylhet
Syed Zahid Hasan
 
Physical properties of soils
Physical properties of soilsPhysical properties of soils
Physical properties of soils
muruganjey
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distribution
Saradha Shyam
 
Bulk density - Particle density - Definition - Factors affecting bulk density...
Bulk density - Particle density - Definition - Factors affecting bulk density...Bulk density - Particle density - Definition - Factors affecting bulk density...
Bulk density - Particle density - Definition - Factors affecting bulk density...
agriyouthnepal
 
ANOVA & EXPERIMENTAL DESIGNS
ANOVA & EXPERIMENTAL DESIGNSANOVA & EXPERIMENTAL DESIGNS
ANOVA & EXPERIMENTAL DESIGNSvishwanth555
 
Crop Production & Management
Crop Production & ManagementCrop Production & Management
Crop Production & Management
Durgesh Hari Das
 
MECHANISMS OF NUTRIENT UPTAKE FROM SOIL
MECHANISMS OF NUTRIENT UPTAKE FROM SOIL MECHANISMS OF NUTRIENT UPTAKE FROM SOIL
MECHANISMS OF NUTRIENT UPTAKE FROM SOIL
SHRAVAN KUMAR REDDY
 
DETERMINATION OF PHOSPHOROUS IN SOIL
DETERMINATION OF PHOSPHOROUS IN SOILDETERMINATION OF PHOSPHOROUS IN SOIL
DETERMINATION OF PHOSPHOROUS IN SOIL
Narendrareddy123
 
Introduction to Generalized Linear Models
Introduction to Generalized Linear ModelsIntroduction to Generalized Linear Models
Introduction to Generalized Linear Models
richardchandler
 
Agronomic,Chemical,and Physiological methods of increasing FUE
Agronomic,Chemical,and Physiological methods of increasing FUEAgronomic,Chemical,and Physiological methods of increasing FUE
Agronomic,Chemical,and Physiological methods of increasing FUE
SUNITA MEHER
 
Ion exchange CEC
Ion exchange CECIon exchange CEC
Ion exchange CEC
agriyouthnepal
 
critical differences in split plot and strip plot design.pptx
critical differences in split plot and strip plot design.pptxcritical differences in split plot and strip plot design.pptx
critical differences in split plot and strip plot design.pptx
ADITHYA531237
 
Soil Fertility and Sustainable agriculture
Soil Fertility and Sustainable agricultureSoil Fertility and Sustainable agriculture
Soil Fertility and Sustainable agriculture
Sayak Das
 
nano-fertilizer
nano-fertilizernano-fertilizer
nano-fertilizer
pritish swain
 
Anova by Hazilah Mohd Amin
Anova by Hazilah Mohd AminAnova by Hazilah Mohd Amin
Anova by Hazilah Mohd Amin
HazilahMohd
 

What's hot (20)

Resource conservation techniques_in_rice_wheat_cropping_system
Resource conservation techniques_in_rice_wheat_cropping_systemResource conservation techniques_in_rice_wheat_cropping_system
Resource conservation techniques_in_rice_wheat_cropping_system
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distribution
 
Orthogonal Property of Standard Design/Orthogonality of Design and Factorial ...
Orthogonal Property of Standard Design/Orthogonality of Design and Factorial ...Orthogonal Property of Standard Design/Orthogonality of Design and Factorial ...
Orthogonal Property of Standard Design/Orthogonality of Design and Factorial ...
 
PG STAT 531 Lecture 5 Probability Distribution
PG STAT 531 Lecture 5 Probability DistributionPG STAT 531 Lecture 5 Probability Distribution
PG STAT 531 Lecture 5 Probability Distribution
 
Determination potassium by_ammonium_acetate_extraction_method_zahid_sau_sylhet
Determination potassium by_ammonium_acetate_extraction_method_zahid_sau_sylhetDetermination potassium by_ammonium_acetate_extraction_method_zahid_sau_sylhet
Determination potassium by_ammonium_acetate_extraction_method_zahid_sau_sylhet
 
Physical properties of soils
Physical properties of soilsPhysical properties of soils
Physical properties of soils
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distribution
 
Bulk density - Particle density - Definition - Factors affecting bulk density...
Bulk density - Particle density - Definition - Factors affecting bulk density...Bulk density - Particle density - Definition - Factors affecting bulk density...
Bulk density - Particle density - Definition - Factors affecting bulk density...
 
ANOVA & EXPERIMENTAL DESIGNS
ANOVA & EXPERIMENTAL DESIGNSANOVA & EXPERIMENTAL DESIGNS
ANOVA & EXPERIMENTAL DESIGNS
 
Crop Production & Management
Crop Production & ManagementCrop Production & Management
Crop Production & Management
 
MECHANISMS OF NUTRIENT UPTAKE FROM SOIL
MECHANISMS OF NUTRIENT UPTAKE FROM SOIL MECHANISMS OF NUTRIENT UPTAKE FROM SOIL
MECHANISMS OF NUTRIENT UPTAKE FROM SOIL
 
DETERMINATION OF PHOSPHOROUS IN SOIL
DETERMINATION OF PHOSPHOROUS IN SOILDETERMINATION OF PHOSPHOROUS IN SOIL
DETERMINATION OF PHOSPHOROUS IN SOIL
 
Soil As A Resource
Soil As A ResourceSoil As A Resource
Soil As A Resource
 
Introduction to Generalized Linear Models
Introduction to Generalized Linear ModelsIntroduction to Generalized Linear Models
Introduction to Generalized Linear Models
 
Agronomic,Chemical,and Physiological methods of increasing FUE
Agronomic,Chemical,and Physiological methods of increasing FUEAgronomic,Chemical,and Physiological methods of increasing FUE
Agronomic,Chemical,and Physiological methods of increasing FUE
 
Ion exchange CEC
Ion exchange CECIon exchange CEC
Ion exchange CEC
 
critical differences in split plot and strip plot design.pptx
critical differences in split plot and strip plot design.pptxcritical differences in split plot and strip plot design.pptx
critical differences in split plot and strip plot design.pptx
 
Soil Fertility and Sustainable agriculture
Soil Fertility and Sustainable agricultureSoil Fertility and Sustainable agriculture
Soil Fertility and Sustainable agriculture
 
nano-fertilizer
nano-fertilizernano-fertilizer
nano-fertilizer
 
Anova by Hazilah Mohd Amin
Anova by Hazilah Mohd AminAnova by Hazilah Mohd Amin
Anova by Hazilah Mohd Amin
 

Viewers also liked

Ex 1 2 possion
Ex 1 2  possionEx 1 2  possion
Ex 1 2 possion
chener Qadr
 
Ketertarikan Mahasiswa terhadap Jurusan berdasarkan Jenis Kelamin
Ketertarikan Mahasiswa terhadap Jurusan berdasarkan Jenis KelaminKetertarikan Mahasiswa terhadap Jurusan berdasarkan Jenis Kelamin
Ketertarikan Mahasiswa terhadap Jurusan berdasarkan Jenis Kelamin
afifahdhaniyah
 
Prabhuswamy_M_stimulus variation_components
Prabhuswamy_M_stimulus variation_componentsPrabhuswamy_M_stimulus variation_components
Prabhuswamy_M_stimulus variation_components
Dr. Prabhuswamy Mallappa
 
Memento deroulement des carrieres maj juin 2016 cdg 35
Memento deroulement des carrieres maj juin 2016 cdg 35Memento deroulement des carrieres maj juin 2016 cdg 35
Memento deroulement des carrieres maj juin 2016 cdg 35
Dominique Gayraud
 
Birthday Paradox explained
Birthday Paradox explainedBirthday Paradox explained
Birthday Paradox explained
Sajith Ekanayaka
 
Astronomi dan
Astronomi danAstronomi dan
Astronomi dan
Vrndavan Dasa
 
Tarea uno del primer modulo.
Tarea uno del primer modulo.Tarea uno del primer modulo.
Tarea uno del primer modulo.
J. Amauris Gelabert S.
 
ASAS-ASAS DAN RUANG LINGKUP ILMU ANTROPOLOGI
ASAS-ASAS DAN RUANG LINGKUP ILMU ANTROPOLOGIASAS-ASAS DAN RUANG LINGKUP ILMU ANTROPOLOGI
ASAS-ASAS DAN RUANG LINGKUP ILMU ANTROPOLOGI
ilmu komunikasi Utb lampung
 
Matematicas financieras 4-1_egp-27.02.2012
Matematicas financieras 4-1_egp-27.02.2012Matematicas financieras 4-1_egp-27.02.2012
Matematicas financieras 4-1_egp-27.02.2012
Escuela Negocios (EDUN)
 

Viewers also liked (10)

Ex 1 2 possion
Ex 1 2  possionEx 1 2  possion
Ex 1 2 possion
 
Bab iii
Bab iiiBab iii
Bab iii
 
Ketertarikan Mahasiswa terhadap Jurusan berdasarkan Jenis Kelamin
Ketertarikan Mahasiswa terhadap Jurusan berdasarkan Jenis KelaminKetertarikan Mahasiswa terhadap Jurusan berdasarkan Jenis Kelamin
Ketertarikan Mahasiswa terhadap Jurusan berdasarkan Jenis Kelamin
 
Prabhuswamy_M_stimulus variation_components
Prabhuswamy_M_stimulus variation_componentsPrabhuswamy_M_stimulus variation_components
Prabhuswamy_M_stimulus variation_components
 
Memento deroulement des carrieres maj juin 2016 cdg 35
Memento deroulement des carrieres maj juin 2016 cdg 35Memento deroulement des carrieres maj juin 2016 cdg 35
Memento deroulement des carrieres maj juin 2016 cdg 35
 
Birthday Paradox explained
Birthday Paradox explainedBirthday Paradox explained
Birthday Paradox explained
 
Astronomi dan
Astronomi danAstronomi dan
Astronomi dan
 
Tarea uno del primer modulo.
Tarea uno del primer modulo.Tarea uno del primer modulo.
Tarea uno del primer modulo.
 
ASAS-ASAS DAN RUANG LINGKUP ILMU ANTROPOLOGI
ASAS-ASAS DAN RUANG LINGKUP ILMU ANTROPOLOGIASAS-ASAS DAN RUANG LINGKUP ILMU ANTROPOLOGI
ASAS-ASAS DAN RUANG LINGKUP ILMU ANTROPOLOGI
 
Matematicas financieras 4-1_egp-27.02.2012
Matematicas financieras 4-1_egp-27.02.2012Matematicas financieras 4-1_egp-27.02.2012
Matematicas financieras 4-1_egp-27.02.2012
 

Similar to Binomia ex 2

1630 the binomial distribution
1630 the binomial distribution1630 the binomial distribution
1630 the binomial distribution
Dr Fereidoun Dejahang
 
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
MdSazolAhmmed
 
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
 
Binomial probability distributions
Binomial probability distributions  Binomial probability distributions
Binomial probability distributions
Long Beach City College
 
Biostatistics-Week 6.pptx_ Binominal Distribution
Biostatistics-Week 6.pptx_ Binominal DistributionBiostatistics-Week 6.pptx_ Binominal Distribution
Biostatistics-Week 6.pptx_ Binominal Distribution
MahmudHasan154
 
Discrete probability distributions
Discrete probability distributionsDiscrete probability distributions
Discrete probability distributions
Nadeem Uddin
 
Prob distros
Prob distrosProb distros
Prob distros
Carlos Rodriguez
 
Module 5 Lecture Notes
Module 5 Lecture NotesModule 5 Lecture Notes
Module 5 Lecture Notes
Lumen Learning
 
Binomial distribution for mathematics pre u
Binomial distribution for mathematics pre uBinomial distribution for mathematics pre u
Binomial distribution for mathematics pre u
DanielMukhriz2
 
Probability distribution
Probability distributionProbability distribution
Probability distribution
Nafiur Rahman Tuhin
 
Probability distribution for Dummies
Probability distribution for DummiesProbability distribution for Dummies
Probability distribution for Dummies
Balaji P
 
Discrete Probability Distributions
Discrete Probability DistributionsDiscrete Probability Distributions
Discrete Probability Distributionsmandalina landy
 
Binomail distribution 23 jan 21
Binomail distribution 23 jan 21Binomail distribution 23 jan 21
Binomail distribution 23 jan 21
Arun Mishra
 
binomialprobabilitydistribution-200508182110 (1).pdf
binomialprobabilitydistribution-200508182110 (1).pdfbinomialprobabilitydistribution-200508182110 (1).pdf
binomialprobabilitydistribution-200508182110 (1).pdf
Hafizsamiullah1791
 
Binomial Probability Distributions
Binomial Probability DistributionsBinomial Probability Distributions
Binomial Probability Distributions
Long Beach City College
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distribution
Sushmita R Gopinath
 
Binomial probability distribution
Binomial probability distributionBinomial probability distribution
Binomial probability distribution
Nadeem Uddin
 
Probability distribution
Probability distributionProbability distribution
Probability distributionRanjan Kumar
 
Normal Distribution Presentation
Normal Distribution PresentationNormal Distribution Presentation
Normal Distribution Presentationsankarshanjoshi
 
Chapter 4 Special Discrete Distribution.pptx
Chapter 4 Special Discrete Distribution.pptxChapter 4 Special Discrete Distribution.pptx
Chapter 4 Special Discrete Distribution.pptx
amopro5198
 

Similar to Binomia ex 2 (20)

1630 the binomial distribution
1630 the binomial distribution1630 the binomial distribution
1630 the binomial distribution
 
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
 
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...
 
Binomial probability distributions
Binomial probability distributions  Binomial probability distributions
Binomial probability distributions
 
Biostatistics-Week 6.pptx_ Binominal Distribution
Biostatistics-Week 6.pptx_ Binominal DistributionBiostatistics-Week 6.pptx_ Binominal Distribution
Biostatistics-Week 6.pptx_ Binominal Distribution
 
Discrete probability distributions
Discrete probability distributionsDiscrete probability distributions
Discrete probability distributions
 
Prob distros
Prob distrosProb distros
Prob distros
 
Module 5 Lecture Notes
Module 5 Lecture NotesModule 5 Lecture Notes
Module 5 Lecture Notes
 
Binomial distribution for mathematics pre u
Binomial distribution for mathematics pre uBinomial distribution for mathematics pre u
Binomial distribution for mathematics pre u
 
Probability distribution
Probability distributionProbability distribution
Probability distribution
 
Probability distribution for Dummies
Probability distribution for DummiesProbability distribution for Dummies
Probability distribution for Dummies
 
Discrete Probability Distributions
Discrete Probability DistributionsDiscrete Probability Distributions
Discrete Probability Distributions
 
Binomail distribution 23 jan 21
Binomail distribution 23 jan 21Binomail distribution 23 jan 21
Binomail distribution 23 jan 21
 
binomialprobabilitydistribution-200508182110 (1).pdf
binomialprobabilitydistribution-200508182110 (1).pdfbinomialprobabilitydistribution-200508182110 (1).pdf
binomialprobabilitydistribution-200508182110 (1).pdf
 
Binomial Probability Distributions
Binomial Probability DistributionsBinomial Probability Distributions
Binomial Probability Distributions
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distribution
 
Binomial probability distribution
Binomial probability distributionBinomial probability distribution
Binomial probability distribution
 
Probability distribution
Probability distributionProbability distribution
Probability distribution
 
Normal Distribution Presentation
Normal Distribution PresentationNormal Distribution Presentation
Normal Distribution Presentation
 
Chapter 4 Special Discrete Distribution.pptx
Chapter 4 Special Discrete Distribution.pptxChapter 4 Special Discrete Distribution.pptx
Chapter 4 Special Discrete Distribution.pptx
 

More from chener Qadr

Binomial p3 p237
Binomial p3  p237Binomial p3  p237
Binomial p3 p237
chener Qadr
 
Binomial ex 4 and 5
Binomial ex 4 and 5Binomial ex 4 and 5
Binomial ex 4 and 5
chener Qadr
 
Binomial ex 3
Binomial ex 3Binomial ex 3
Binomial ex 3
chener Qadr
 
3 b annual effort
3 b  annual effort3 b  annual effort
3 b annual effort
chener Qadr
 
3 a annual effort
3 a annual effort3 a annual effort
3 a annual effort
chener Qadr
 
3rd semester
3rd semester3rd semester
3rd semester
chener Qadr
 
3 b detail
3 b detail3 b detail
3 b detail
chener Qadr
 
3 a detail
3 a detail3 a detail
3 a detail
chener Qadr
 
2nd semester detail
2nd semester detail2nd semester detail
2nd semester detail
chener Qadr
 
3rd semester-mark
3rd semester-mark3rd semester-mark
3rd semester-mark
chener Qadr
 
Solution to 2nd semeter eng. statistics 2015 2016
Solution to 2nd semeter eng. statistics 2015 2016Solution to 2nd semeter eng. statistics 2015 2016
Solution to 2nd semeter eng. statistics 2015 2016
chener Qadr
 
Solution to first semester soil 2015 16
Solution to first semester soil 2015 16Solution to first semester soil 2015 16
Solution to first semester soil 2015 16
chener Qadr
 
Solution to-2nd-semester-soil-mechanics-2015-2016
Solution to-2nd-semester-soil-mechanics-2015-2016Solution to-2nd-semester-soil-mechanics-2015-2016
Solution to-2nd-semester-soil-mechanics-2015-2016
chener Qadr
 
Slide Software- home work
Slide Software- home workSlide Software- home work
Slide Software- home work
chener Qadr
 

More from chener Qadr (14)

Binomial p3 p237
Binomial p3  p237Binomial p3  p237
Binomial p3 p237
 
Binomial ex 4 and 5
Binomial ex 4 and 5Binomial ex 4 and 5
Binomial ex 4 and 5
 
Binomial ex 3
Binomial ex 3Binomial ex 3
Binomial ex 3
 
3 b annual effort
3 b  annual effort3 b  annual effort
3 b annual effort
 
3 a annual effort
3 a annual effort3 a annual effort
3 a annual effort
 
3rd semester
3rd semester3rd semester
3rd semester
 
3 b detail
3 b detail3 b detail
3 b detail
 
3 a detail
3 a detail3 a detail
3 a detail
 
2nd semester detail
2nd semester detail2nd semester detail
2nd semester detail
 
3rd semester-mark
3rd semester-mark3rd semester-mark
3rd semester-mark
 
Solution to 2nd semeter eng. statistics 2015 2016
Solution to 2nd semeter eng. statistics 2015 2016Solution to 2nd semeter eng. statistics 2015 2016
Solution to 2nd semeter eng. statistics 2015 2016
 
Solution to first semester soil 2015 16
Solution to first semester soil 2015 16Solution to first semester soil 2015 16
Solution to first semester soil 2015 16
 
Solution to-2nd-semester-soil-mechanics-2015-2016
Solution to-2nd-semester-soil-mechanics-2015-2016Solution to-2nd-semester-soil-mechanics-2015-2016
Solution to-2nd-semester-soil-mechanics-2015-2016
 
Slide Software- home work
Slide Software- home workSlide Software- home work
Slide Software- home work
 

Recently uploaded

Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
PedroFerreira53928
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
GeoBlogs
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
Steve Thomason
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
PedroFerreira53928
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative Thoughts
Col Mukteshwar Prasad
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 

Recently uploaded (20)

Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative Thoughts
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 

Binomia ex 2

  • 1. The Binomial Distribution October 20, 2010 The Binomial Distribution
  • 2. Bernoulli Trials Definition A Bernoulli trial is a random experiment in which there are only two possible outcomes - success and failure. 1 Tossing a coin and considering heads as success and tails as failure. The Binomial Distribution
  • 3. Bernoulli Trials Definition A Bernoulli trial is a random experiment in which there are only two possible outcomes - success and failure. 1 Tossing a coin and considering heads as success and tails as failure. 2 Checking items from a production line: success = not defective, failure = defective. The Binomial Distribution
  • 4. Bernoulli Trials Definition A Bernoulli trial is a random experiment in which there are only two possible outcomes - success and failure. 1 Tossing a coin and considering heads as success and tails as failure. 2 Checking items from a production line: success = not defective, failure = defective. 3 Phoning a call centre: success = operator free; failure = no operator free. The Binomial Distribution
  • 5. Bernoulli Random Variables A Bernoulli random variable X takes the values 0 and 1 and P(X = 1) = p P(X = 0) = 1 − p. It can be easily checked that the mean and variance of a Bernoulli random variable are E(X) = p V (X) = p(1 − p). The Binomial Distribution
  • 6. Binomial Experiments Consider the following type of random experiment: 1 The experiment consists of n repeated Bernoulli trials - each trial has only two possible outcomes labelled as success and failure; The Binomial Distribution
  • 7. Binomial Experiments Consider the following type of random experiment: 1 The experiment consists of n repeated Bernoulli trials - each trial has only two possible outcomes labelled as success and failure; 2 The trials are independent - the outcome of any trial has no effect on the probability of the others; The Binomial Distribution
  • 8. Binomial Experiments Consider the following type of random experiment: 1 The experiment consists of n repeated Bernoulli trials - each trial has only two possible outcomes labelled as success and failure; 2 The trials are independent - the outcome of any trial has no effect on the probability of the others; 3 The probability of success in each trial is constant which we denote by p. The Binomial Distribution
  • 9. The Binomial Distribution Definition The random variable X that counts the number of successes, k, in the n trials is said to have a binomial distribution with parameters n and p, written bin(k; n, p). The probability mass function of a binomial random variable X with parameters n and p is The Binomial Distribution
  • 10. The Binomial Distribution Definition The random variable X that counts the number of successes, k, in the n trials is said to have a binomial distribution with parameters n and p, written bin(k; n, p). The probability mass function of a binomial random variable X with parameters n and p is f (k) = P(X = k) = n k pk (1 − p)n−k for k = 0, 1, 2, 3, . . . , n. The Binomial Distribution
  • 11. The Binomial Distribution Definition The random variable X that counts the number of successes, k, in the n trials is said to have a binomial distribution with parameters n and p, written bin(k; n, p). The probability mass function of a binomial random variable X with parameters n and p is f (k) = P(X = k) = n k pk (1 − p)n−k for k = 0, 1, 2, 3, . . . , n. n k counts the number of outcomes that include exactly k successes and n − k failures. The Binomial Distribution
  • 12. Binomial Distribution - Examples Example A biased coin is tossed 6 times. The probability of heads on any toss is 0.3. Let X denote the number of heads that come up. Calculate: (i) P(X = 2) (ii) P(X = 3) (iii) P(1 < X ≤ 5). The Binomial Distribution
  • 13. Binomial Distribution - Examples Example (i) If we call heads a success then this X has a binomial distribution with parameters n = 6 and p = 0.3. P(X = 2) = 6 2 (0.3)2 (0.7)4 = 0.324135 The Binomial Distribution
  • 14. Binomial Distribution - Examples Example (i) If we call heads a success then this X has a binomial distribution with parameters n = 6 and p = 0.3. P(X = 2) = 6 2 (0.3)2 (0.7)4 = 0.324135 (ii) P(X = 3) = 6 3 (0.3)3 (0.7)3 = 0.18522. (iii) We need P(1 < X ≤ 5) The Binomial Distribution
  • 15. Binomial Distribution - Examples Example (i) If we call heads a success then this X has a binomial distribution with parameters n = 6 and p = 0.3. P(X = 2) = 6 2 (0.3)2 (0.7)4 = 0.324135 (ii) P(X = 3) = 6 3 (0.3)3 (0.7)3 = 0.18522. (iii) We need P(1 < X ≤ 5) P(X = 2) + P(X = 3) + P(X = 4) + P(X = 5) = 0.324 + 0.185 + 0.059 + 0.01 = 0.578 The Binomial Distribution
  • 16. Binomial Distribution - Example Example A quality control engineer is in charge of testing whether or not 90% of the DVD players produced by his company conform to specifications. To do this, the engineer randomly selects a batch of 12 DVD players from each day’s production. The day’s production is acceptable provided no more than 1 DVD player fails to meet specifications. Otherwise, the entire day’s production has to be tested. (i) What is the probability that the engineer incorrectly passes a day’s production as acceptable if only 80% of the day’s DVD players actually conform to specification? (ii) What is the probability that the engineer unnecessarily requires the entire day’s production to be tested if in fact 90% of the DVD players conform to specifications? The Binomial Distribution
  • 17. Example Example (i) Let X denote the number of DVD players in the sample that fail to meet specifications. In part (i) we want P(X ≤ 1) with binomial parameters n = 12, p = 0.2. P(X ≤ 1) = P(X = 0) + P(X = 1) = 12 0 (0.2)0 (0.8)12 + 12 1 (0.2)1 (0.8)11 = 0.069 + 0.206 = 0.275 The Binomial Distribution
  • 18. Example Example (ii) We now want P(X > 1) with parameters n = 12, p = 0.1. P(X ≤ 1) = P(X = 0) + P(X = 1) = 12 0 (0.1)0 (0.9)12 + 12 1 (0.1)1 (0.9)11 = 0.659 So P(X > 1) = 0.341. The Binomial Distribution
  • 19. Binomial Distribution - Mean and Variance 1 Any random variable with a binomial distribution X with parameters n and p is a sum of n independent Bernoulli random variables in which the probability of success is p. X = X1 + X2 + · · · + Xn. The Binomial Distribution
  • 20. Binomial Distribution - Mean and Variance 1 Any random variable with a binomial distribution X with parameters n and p is a sum of n independent Bernoulli random variables in which the probability of success is p. X = X1 + X2 + · · · + Xn. 2 The mean and variance of each Xi can easily be calculated as: E(Xi ) = p, V (Xi ) = p(1 − p). The Binomial Distribution
  • 21. Binomial Distribution - Mean and Variance 1 Any random variable with a binomial distribution X with parameters n and p is a sum of n independent Bernoulli random variables in which the probability of success is p. X = X1 + X2 + · · · + Xn. 2 The mean and variance of each Xi can easily be calculated as: E(Xi ) = p, V (Xi ) = p(1 − p). 3 Hence the mean and variance of X are given by (remember the Xi are independent) E(X) = np, V (X) = np(1 − p). The Binomial Distribution
  • 22. Binomial Distribution - Examples Example Bits are sent over a communications channel in packets of 12. If the probability of a bit being corrupted over this channel is 0.1 and such errors are independent, what is the probability that no more than 2 bits in a packet are corrupted? If 6 packets are sent over the channel, what is the probability that at least one packet will contain 3 or more corrupted bits? Let X denote the number of packets containing 3 or more corrupted bits. What is the probability that X will exceed its mean by more than 2 standard deviations? The Binomial Distribution
  • 23. Binomial Distribution - Examples Example Let C denote the number of corrupted bits in a packet. Then in the first question, we want P(C ≤ 2) = P(C = 0) + P(C = 1) + P(C = 2). The Binomial Distribution
  • 24. Binomial Distribution - Examples Example Let C denote the number of corrupted bits in a packet. Then in the first question, we want P(C ≤ 2) = P(C = 0) + P(C = 1) + P(C = 2). P(C = 0) = 12 0 (0.1)0 (0.9)12 = 0.282 The Binomial Distribution
  • 25. Binomial Distribution - Examples Example Let C denote the number of corrupted bits in a packet. Then in the first question, we want P(C ≤ 2) = P(C = 0) + P(C = 1) + P(C = 2). P(C = 0) = 12 0 (0.1)0 (0.9)12 = 0.282 P(C = 1) = 12 1 (0.1)1 (0.9)11 = 0.377 P(C = 2) = 12 2 (0.1)2 (0.9)10 = 0.23 The Binomial Distribution
  • 26. Binomial Distribution - Examples Example Let C denote the number of corrupted bits in a packet. Then in the first question, we want P(C ≤ 2) = P(C = 0) + P(C = 1) + P(C = 2). P(C = 0) = 12 0 (0.1)0 (0.9)12 = 0.282 P(C = 1) = 12 1 (0.1)1 (0.9)11 = 0.377 P(C = 2) = 12 2 (0.1)2 (0.9)10 = 0.23 So P(C ≤ 2) = 0.282 + 0.377 + 0.23 = 0.889. The Binomial Distribution
  • 27. Binomial Distribution - Examples Example The probability of a packet containing 3 or more corrupted bits is 1 − 0.889 = 0.111. Let X be the number of packets containing 3 or more corrupted bits. X can be modelled with a binomial distribution with parameters n = 6, p = 0.111. The probability that at least one packet will contain 3 or more corrupted bits is: The Binomial Distribution
  • 28. Binomial Distribution - Examples Example The probability of a packet containing 3 or more corrupted bits is 1 − 0.889 = 0.111. Let X be the number of packets containing 3 or more corrupted bits. X can be modelled with a binomial distribution with parameters n = 6, p = 0.111. The probability that at least one packet will contain 3 or more corrupted bits is: 1 − P(X = 0) = 1 − 6 0 (0.111)0 (0.889)6 = 0.494. The Binomial Distribution
  • 29. Binomial Distribution - Examples Example The probability of a packet containing 3 or more corrupted bits is 1 − 0.889 = 0.111. Let X be the number of packets containing 3 or more corrupted bits. X can be modelled with a binomial distribution with parameters n = 6, p = 0.111. The probability that at least one packet will contain 3 or more corrupted bits is: 1 − P(X = 0) = 1 − 6 0 (0.111)0 (0.889)6 = 0.494. The mean of X is µ = 6(0.111) = 0.666 and its standard deviation is σ = 6(0.111)(0.889) = 0.77. The Binomial Distribution
  • 30. Binomial Distribution - Examples So the probability that X exceeds its mean by more than 2 standard deviations is P(X − µ > 2σ) = P(X > 2.2). As X is discrete, this is equal to The Binomial Distribution
  • 31. Binomial Distribution - Examples So the probability that X exceeds its mean by more than 2 standard deviations is P(X − µ > 2σ) = P(X > 2.2). As X is discrete, this is equal to P(X ≥ 3) The Binomial Distribution
  • 32. Binomial Distribution - Examples So the probability that X exceeds its mean by more than 2 standard deviations is P(X − µ > 2σ) = P(X > 2.2). As X is discrete, this is equal to P(X ≥ 3) P(X = 1) = 6 1 (0.111)1 (0.889)5 = 0.37 P(X = 2) = 6 2 (0.111)2 (0.889)4 = 0.115. So P(X ≥ 3) = 1 − (.506 + .37 + .115) = 0.009. The Binomial Distribution