SlideShare a Scribd company logo
Binomial Distributions
                     or quot;Will this SUCCEED or FAIL?




352/365: Jumpin' for Mikey
by flickr user Mr.Thomas
There are five children in a family. Assume that boys and girls are
equally likely.
                                          HOMEWORK
1. What is the probability that three are girls?

             binompdf(5, 1/2, 3)
 2. What is the probability that there are at most three girls
 (i.e., there may be 0, 1, 2, or 3 girls)?

              binomcdf(5, 1/2, 3)

3. What is the probability that there are more than two girls?


             1 – binomcdf(5, 1/2, 2)
A shipment of 200 tires from a tire manufacturing company is
known to include 40 defective tires. Five tires are selected at
random, and each tire is replaced before the next tire is selected.
(a) What is the probability of getting at most 2 defective tires?

           binomcdf(5, 40/200, 2) HOMEWORK

(b) What is the probability of getting at least 1 defective tire?
        1 - binomcdf(5, 40/200, 0)



   (c) What is the probability of getting 2 or 3 defective tires?

            binompdf(5, 40/200, 2) + binompdf(5, 40/200, 3)
At a certain hospital, the probability that a newborn is a boy is
0.47. What is the probability that between 45 and 60 (inclusive) of
the next 100 babies will be boys?
                                                 HOMEWORK
      binomcdf(100, 0.47, 60) — binomcdf(100, 0.47, 44)
Working With Binomial
Distributions


 Let's take apart a typical
 problem about alarm
 clocks and see how the
 pieces fit together.




                  Puzzle Alarm Clock by evadedave
A manufacturer produces 24 yard alarms per week. Six percent of
all the alarms produced are defective. What is the probability of
getting two defective alarms in one week?
  'S' and 'F' (Success and Failure) are the possible outcomes of a
  trial in a binomial experiment, and 'p' and 'q' represent the
  probabilities for 'S' and 'F.'

                      • P(S) = p     • P(F) = q = 1 - p

         • n = the number of trials
         • x = the number of successes in n trials
         • p = probability of success
         • q = probability of failure
         • P(x) = probability of getting exactly x successes in n trials

  Note that 'Success' in this case, is the probability of selecting a
  defective alarm.
A manufacturer produces 24 yard alarms per week. Six percent of
all the alarms produced are defective. What is the probability of
getting two defective alarms in one week?
  'S' and 'F' (Success and Failure) are the possible outcomes of a
  trial in a binomial experiment, and 'p' and 'q' represent the
  probabilities for 'S' and 'F.'

                      • P(S) = p     • P(F) = q = 1 - p
                   So how do we answer
                       this question?
         • n = the number of trials
         • x = the number of successes in n trials
         • p = probability of success
         • q = probability of failure
         • P(x) = probability of getting exactly x successes in n trials

  Note that 'Success' in this case, is the probability of selecting a
  defective alarm.
A manufacturer produces 24 yard alarms per week. Six percent of
all the alarms produced are defective. What is the probability of
getting two defective alarms in one week?
                                      binompdf(trials, p, x [this is optional])
                                         trials = number of trials
                                         p = P(success)
                                         x = specific outcome
Now you try ...
   Elaine is an insurance agent. The probability that she will sell a
   life insurance policy to a family she visits is 0.7 (she's a really
   GOOD sales lady).
   (a) If she sees 8 families today, what is the probability that she
   will sell exactly 5 policies?
Now you try ...
   Elaine is an insurance agent. The probability that she will sell a
   life insurance policy to a family she visits is 0.7 (she's a really
   GOOD sales lady).
 (b) If she sees 8 families today, what is the probability that she
 will sell at most 5 policies?
The Binomial Coin Experiment
http://www.math.uah.edu/stat/applets/BinomialCoinExperiment.xhtml
Normal Approximation to
the Binomial Distribution
   We have seen that binomial distributions and their histograms
   are similar to normal distributions. In certain cases, a binomial
   distribution is a reasonable approximation of a normal
   distribution. How can we tell when this is true?
Normal Approximation to
the Binomial Distribution
Recall:

  In a normal distribution, we used values for μ and σ to solve
  problems, where:

     • μ = the population mean, and
     • σ = the standard deviation


  In a binomial distribution, we used values for 'n' and 'p' to solve
  problems, where:

    • n = number of trials, and
    • p = probability of success
Normal Approximation to
  the Binomial Distribution
We now want to use the normal                     Link by flickr user jontintinjordan
approximation of a binomial distribution.
The distribution will be approximately normal if:

              np ≥ 5 and nq≥ 5
                                        th
                                       be is is
  Once we know that a binomial
                                     typ twe the
                                        es en LIN
  distribution can be approximated
                                           of the K
  by a normal curve we can calculate
                                              dis se
                                                 tri tw
  the values of μ and σ like this:
                                                    bu o
                                                      tio
                                                          ns
Normal Approximation to
                                           An Example
the Binomial Distribution
  Border patrol officers estimate that 10 percent of the vehicles
  crossing the US - Canada border carry undeclared goods. One day
  the officers searched 350 randomly selected vehicles. What is the
  probability that 40 or more vehicles carried undeclared goods?
       Is this binomial distribution approximately normal?

  What is n?       Is np ≥ 5?          What is μ?


  What is p?
                   Is nq ≥ 5?
                                      What is σ?
  What is q?
Are the following distributions normal approximations of binomial
distributions? How do you know?
(a) 60 trials where the probability    (b) 60 trials where the probability
of success on each trial is 0.05       of success on each trial is 0.20




(c) 600 trials where the probability   (d) 80 trials where the probability
of success on each trial is 0.05       of success on each trial is 0.99
Determine the mean and standard deviation for each binomial
distribution. Assume that each distribution is a reasonable
                                                   HOMEWORK
approximation to a normal distribution.
(a) 50 trials where the probability of success for each trial is 0.35




(b) 44 trials where the probability of failure for each trial is 0.28




(c) The probability of the Espro I engine failing in less than 50 000
km is 0.08. In 1998, 16 000 engines were produced. Find the mean
and standard deviation for the engines that did not fail.
Solve the following problem using a binomial solution
A laboratory supply company breeds rats for lab testing. Assume that
male and female rats are equally likely to be born.
                                                HOMEWORK
(a) What is the probability that of 240 animals born, exactly 110
will be female?


(b) What is the probability that of 240 animals born, 110 or more
will be female?


(c) What is the probability that of 240 animals born, 120 or more
will be female?


(d) Is it correct to say that, in the above situation,
P(x ≥ 120) = P(x > 119), or do we need to account
for the values between 119 and 120?
HOMEWORK
The probability that a student owns a CD player is 3/5. If eight
students are selected at random, what is the probability that:
(a) exactly four of them own a CD player?



(b) all of them own a CD player?




(c) none of them own a CD player?
HOMEWORK
The probability that a motorist will use a credit card for gas
purchases at a large service station on the Trans Canada
Highway is 7/8. If eight cars pull up to the gas pumps, what is the
probability that:
(a) seven of them will use a credit card?




(b) four of them will use a credit card?

More Related Content

Similar to Applied 40S April 20, 2009

Applied 40S April 17, 2009
Applied 40S April 17, 2009Applied 40S April 17, 2009
Applied 40S April 17, 2009
Darren Kuropatwa
 
Statistik Chapter 5 (1)
Statistik Chapter 5 (1)Statistik Chapter 5 (1)
Statistik Chapter 5 (1)
WanBK Leo
 
Probability 4.2
Probability 4.2Probability 4.2
Probability 4.2
herbison
 
Week8finalexamlivelecture dec2012
Week8finalexamlivelecture dec2012Week8finalexamlivelecture dec2012
Week8finalexamlivelecture dec2012
Brent Heard
 
Week8finalexamlivelecture april2012
Week8finalexamlivelecture april2012Week8finalexamlivelecture april2012
Week8finalexamlivelecture april2012
Brent Heard
 
Binomial distribution good
Binomial distribution goodBinomial distribution good
Binomial distribution good
Zahida Pervaiz
 
Stat lesson 4.2 rules of computing probability
Stat lesson 4.2 rules of computing probabilityStat lesson 4.2 rules of computing probability
Stat lesson 4.2 rules of computing probability
pipamutuc
 
Prob
ProbProb
STAT 200 Final Exam (FALL 2016)
STAT 200 Final Exam (FALL 2016)STAT 200 Final Exam (FALL 2016)
STAT 200 Final Exam (FALL 2016)
Vhristofer
 
Chapter 7-8 Review Sheet Answers
Chapter 7-8 Review Sheet AnswersChapter 7-8 Review Sheet Answers
Chapter 7-8 Review Sheet Answers
sojhk
 
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
 
Chapter 06
Chapter 06 Chapter 06
Chapter 06
Tuul Tuul
 
Chapter 06.ppt
Chapter 06.pptChapter 06.ppt
Chapter 06.ppt
HCCTAndTechnologycom
 
Statistics lec2
Statistics lec2Statistics lec2
Statistics lec2
Hoss Angel
 
STATUse the information below to answer Questions 1 through 4..docx
STATUse the information below to answer Questions 1 through 4..docxSTATUse the information below to answer Questions 1 through 4..docx
STATUse the information below to answer Questions 1 through 4..docx
rafaelaj1
 
Applied Math 40S March 18, 2008
Applied Math 40S March 18, 2008Applied Math 40S March 18, 2008
Applied Math 40S March 18, 2008
Darren Kuropatwa
 
STAT 200 Massive Success / snaptutorial.com
STAT 200 Massive Success / snaptutorial.comSTAT 200 Massive Success / snaptutorial.com
STAT 200 Massive Success / snaptutorial.com
Reynolds79
 
InstructionDue Date 6 pm on October 28 (Wed)Part IProbability a.docx
InstructionDue Date 6 pm on October 28 (Wed)Part IProbability a.docxInstructionDue Date 6 pm on October 28 (Wed)Part IProbability a.docx
InstructionDue Date 6 pm on October 28 (Wed)Part IProbability a.docx
dirkrplav
 
G10 Math Q3- Week 9- Mutually Exclusive Events.ppt
G10 Math Q3- Week 9- Mutually Exclusive Events.pptG10 Math Q3- Week 9- Mutually Exclusive Events.ppt
G10 Math Q3- Week 9- Mutually Exclusive Events.ppt
CheJavier
 
LAILA BALINADO COT 2.pptx
LAILA BALINADO COT 2.pptxLAILA BALINADO COT 2.pptx
LAILA BALINADO COT 2.pptx
LailaVispoBalinado
 

Similar to Applied 40S April 20, 2009 (20)

Applied 40S April 17, 2009
Applied 40S April 17, 2009Applied 40S April 17, 2009
Applied 40S April 17, 2009
 
Statistik Chapter 5 (1)
Statistik Chapter 5 (1)Statistik Chapter 5 (1)
Statistik Chapter 5 (1)
 
Probability 4.2
Probability 4.2Probability 4.2
Probability 4.2
 
Week8finalexamlivelecture dec2012
Week8finalexamlivelecture dec2012Week8finalexamlivelecture dec2012
Week8finalexamlivelecture dec2012
 
Week8finalexamlivelecture april2012
Week8finalexamlivelecture april2012Week8finalexamlivelecture april2012
Week8finalexamlivelecture april2012
 
Binomial distribution good
Binomial distribution goodBinomial distribution good
Binomial distribution good
 
Stat lesson 4.2 rules of computing probability
Stat lesson 4.2 rules of computing probabilityStat lesson 4.2 rules of computing probability
Stat lesson 4.2 rules of computing probability
 
Prob
ProbProb
Prob
 
STAT 200 Final Exam (FALL 2016)
STAT 200 Final Exam (FALL 2016)STAT 200 Final Exam (FALL 2016)
STAT 200 Final Exam (FALL 2016)
 
Chapter 7-8 Review Sheet Answers
Chapter 7-8 Review Sheet AnswersChapter 7-8 Review Sheet Answers
Chapter 7-8 Review Sheet Answers
 
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...
 
Chapter 06
Chapter 06 Chapter 06
Chapter 06
 
Chapter 06.ppt
Chapter 06.pptChapter 06.ppt
Chapter 06.ppt
 
Statistics lec2
Statistics lec2Statistics lec2
Statistics lec2
 
STATUse the information below to answer Questions 1 through 4..docx
STATUse the information below to answer Questions 1 through 4..docxSTATUse the information below to answer Questions 1 through 4..docx
STATUse the information below to answer Questions 1 through 4..docx
 
Applied Math 40S March 18, 2008
Applied Math 40S March 18, 2008Applied Math 40S March 18, 2008
Applied Math 40S March 18, 2008
 
STAT 200 Massive Success / snaptutorial.com
STAT 200 Massive Success / snaptutorial.comSTAT 200 Massive Success / snaptutorial.com
STAT 200 Massive Success / snaptutorial.com
 
InstructionDue Date 6 pm on October 28 (Wed)Part IProbability a.docx
InstructionDue Date 6 pm on October 28 (Wed)Part IProbability a.docxInstructionDue Date 6 pm on October 28 (Wed)Part IProbability a.docx
InstructionDue Date 6 pm on October 28 (Wed)Part IProbability a.docx
 
G10 Math Q3- Week 9- Mutually Exclusive Events.ppt
G10 Math Q3- Week 9- Mutually Exclusive Events.pptG10 Math Q3- Week 9- Mutually Exclusive Events.ppt
G10 Math Q3- Week 9- Mutually Exclusive Events.ppt
 
LAILA BALINADO COT 2.pptx
LAILA BALINADO COT 2.pptxLAILA BALINADO COT 2.pptx
LAILA BALINADO COT 2.pptx
 

More from Darren Kuropatwa

Behind Their Eyes v1
Behind Their Eyes v1Behind Their Eyes v1
Behind Their Eyes v1
Darren Kuropatwa
 
Leading Change v1
Leading Change v1Leading Change v1
Leading Change v1
Darren Kuropatwa
 
Providing Permission To Wonder v2.1
Providing Permission To Wonder v2.1Providing Permission To Wonder v2.1
Providing Permission To Wonder v2.1
Darren Kuropatwa
 
Things That Suck About Digital Citizenship v1
Things That Suck About Digital Citizenship v1Things That Suck About Digital Citizenship v1
Things That Suck About Digital Citizenship v1
Darren Kuropatwa
 
Digital Storytelling for Deeper Learning v1
Digital Storytelling for Deeper Learning v1Digital Storytelling for Deeper Learning v1
Digital Storytelling for Deeper Learning v1
Darren Kuropatwa
 
Tales of Learning and the Gifts of Footprints v4.2
Tales of Learning and the Gifts of Footprints v4.2Tales of Learning and the Gifts of Footprints v4.2
Tales of Learning and the Gifts of Footprints v4.2
Darren Kuropatwa
 
The Fourth Screen v4.2
The Fourth Screen v4.2The Fourth Screen v4.2
The Fourth Screen v4.2
Darren Kuropatwa
 
Making Student Thinking Visible v4
 Making Student Thinking Visible v4 Making Student Thinking Visible v4
Making Student Thinking Visible v4
Darren Kuropatwa
 
Learning is at BYTE 2017
Learning is at BYTE 2017Learning is at BYTE 2017
Learning is at BYTE 2017
Darren Kuropatwa
 
Leveraging Digital for Deeper Learning
Leveraging Digital for Deeper LearningLeveraging Digital for Deeper Learning
Leveraging Digital for Deeper Learning
Darren Kuropatwa
 
We Learn Through Stories at PRIZMAH17
We Learn Through Stories at PRIZMAH17We Learn Through Stories at PRIZMAH17
We Learn Through Stories at PRIZMAH17
Darren Kuropatwa
 
Providing Permission to Wonder v3
Providing Permission to Wonder v3Providing Permission to Wonder v3
Providing Permission to Wonder v3
Darren Kuropatwa
 
The Fourth Screen v4.1
The Fourth Screen v4.1The Fourth Screen v4.1
The Fourth Screen v4.1
Darren Kuropatwa
 
Making Student Thinking Visible v3.7
 Making Student Thinking Visible v3.7 Making Student Thinking Visible v3.7
Making Student Thinking Visible v3.7
Darren Kuropatwa
 
Learning is at AUHSD
Learning is at AUHSDLearning is at AUHSD
Learning is at AUHSD
Darren Kuropatwa
 
Providing Permission to Wonder v2
Providing Permission to Wonder v2Providing Permission to Wonder v2
Providing Permission to Wonder v2
Darren Kuropatwa
 
The Fourth Screen v4
The Fourth Screen v4The Fourth Screen v4
The Fourth Screen v4
Darren Kuropatwa
 
Learning is at BLC16
Learning is at BLC16Learning is at BLC16
Learning is at BLC16
Darren Kuropatwa
 
We Learn Through Stories v4 (master class)
We Learn Through Stories v4 (master class)We Learn Through Stories v4 (master class)
We Learn Through Stories v4 (master class)
Darren Kuropatwa
 
Deep Learning Design: the middle ring
Deep Learning Design: the middle ringDeep Learning Design: the middle ring
Deep Learning Design: the middle ring
Darren Kuropatwa
 

More from Darren Kuropatwa (20)

Behind Their Eyes v1
Behind Their Eyes v1Behind Their Eyes v1
Behind Their Eyes v1
 
Leading Change v1
Leading Change v1Leading Change v1
Leading Change v1
 
Providing Permission To Wonder v2.1
Providing Permission To Wonder v2.1Providing Permission To Wonder v2.1
Providing Permission To Wonder v2.1
 
Things That Suck About Digital Citizenship v1
Things That Suck About Digital Citizenship v1Things That Suck About Digital Citizenship v1
Things That Suck About Digital Citizenship v1
 
Digital Storytelling for Deeper Learning v1
Digital Storytelling for Deeper Learning v1Digital Storytelling for Deeper Learning v1
Digital Storytelling for Deeper Learning v1
 
Tales of Learning and the Gifts of Footprints v4.2
Tales of Learning and the Gifts of Footprints v4.2Tales of Learning and the Gifts of Footprints v4.2
Tales of Learning and the Gifts of Footprints v4.2
 
The Fourth Screen v4.2
The Fourth Screen v4.2The Fourth Screen v4.2
The Fourth Screen v4.2
 
Making Student Thinking Visible v4
 Making Student Thinking Visible v4 Making Student Thinking Visible v4
Making Student Thinking Visible v4
 
Learning is at BYTE 2017
Learning is at BYTE 2017Learning is at BYTE 2017
Learning is at BYTE 2017
 
Leveraging Digital for Deeper Learning
Leveraging Digital for Deeper LearningLeveraging Digital for Deeper Learning
Leveraging Digital for Deeper Learning
 
We Learn Through Stories at PRIZMAH17
We Learn Through Stories at PRIZMAH17We Learn Through Stories at PRIZMAH17
We Learn Through Stories at PRIZMAH17
 
Providing Permission to Wonder v3
Providing Permission to Wonder v3Providing Permission to Wonder v3
Providing Permission to Wonder v3
 
The Fourth Screen v4.1
The Fourth Screen v4.1The Fourth Screen v4.1
The Fourth Screen v4.1
 
Making Student Thinking Visible v3.7
 Making Student Thinking Visible v3.7 Making Student Thinking Visible v3.7
Making Student Thinking Visible v3.7
 
Learning is at AUHSD
Learning is at AUHSDLearning is at AUHSD
Learning is at AUHSD
 
Providing Permission to Wonder v2
Providing Permission to Wonder v2Providing Permission to Wonder v2
Providing Permission to Wonder v2
 
The Fourth Screen v4
The Fourth Screen v4The Fourth Screen v4
The Fourth Screen v4
 
Learning is at BLC16
Learning is at BLC16Learning is at BLC16
Learning is at BLC16
 
We Learn Through Stories v4 (master class)
We Learn Through Stories v4 (master class)We Learn Through Stories v4 (master class)
We Learn Through Stories v4 (master class)
 
Deep Learning Design: the middle ring
Deep Learning Design: the middle ringDeep Learning Design: the middle ring
Deep Learning Design: the middle ring
 

Recently uploaded

Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
EduSkills OECD
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
BoudhayanBhattachari
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
سمير بسيوني
 
SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
zuzanka
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Denish Jangid
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
Electric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger HuntElectric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger Hunt
RamseyBerglund
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
RidwanHassanYusuf
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
deepaannamalai16
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
deepaannamalai16
 
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptxRESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
zuzanka
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
imrankhan141184
 

Recently uploaded (20)

Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
 
SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
Electric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger HuntElectric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger Hunt
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
 
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptxRESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
 

Applied 40S April 20, 2009

  • 1. Binomial Distributions or quot;Will this SUCCEED or FAIL? 352/365: Jumpin' for Mikey by flickr user Mr.Thomas
  • 2. There are five children in a family. Assume that boys and girls are equally likely. HOMEWORK 1. What is the probability that three are girls? binompdf(5, 1/2, 3) 2. What is the probability that there are at most three girls (i.e., there may be 0, 1, 2, or 3 girls)? binomcdf(5, 1/2, 3) 3. What is the probability that there are more than two girls? 1 – binomcdf(5, 1/2, 2)
  • 3. A shipment of 200 tires from a tire manufacturing company is known to include 40 defective tires. Five tires are selected at random, and each tire is replaced before the next tire is selected. (a) What is the probability of getting at most 2 defective tires? binomcdf(5, 40/200, 2) HOMEWORK (b) What is the probability of getting at least 1 defective tire? 1 - binomcdf(5, 40/200, 0) (c) What is the probability of getting 2 or 3 defective tires? binompdf(5, 40/200, 2) + binompdf(5, 40/200, 3)
  • 4. At a certain hospital, the probability that a newborn is a boy is 0.47. What is the probability that between 45 and 60 (inclusive) of the next 100 babies will be boys? HOMEWORK binomcdf(100, 0.47, 60) — binomcdf(100, 0.47, 44)
  • 5. Working With Binomial Distributions Let's take apart a typical problem about alarm clocks and see how the pieces fit together. Puzzle Alarm Clock by evadedave
  • 6. A manufacturer produces 24 yard alarms per week. Six percent of all the alarms produced are defective. What is the probability of getting two defective alarms in one week? 'S' and 'F' (Success and Failure) are the possible outcomes of a trial in a binomial experiment, and 'p' and 'q' represent the probabilities for 'S' and 'F.' • P(S) = p • P(F) = q = 1 - p • n = the number of trials • x = the number of successes in n trials • p = probability of success • q = probability of failure • P(x) = probability of getting exactly x successes in n trials Note that 'Success' in this case, is the probability of selecting a defective alarm.
  • 7. A manufacturer produces 24 yard alarms per week. Six percent of all the alarms produced are defective. What is the probability of getting two defective alarms in one week? 'S' and 'F' (Success and Failure) are the possible outcomes of a trial in a binomial experiment, and 'p' and 'q' represent the probabilities for 'S' and 'F.' • P(S) = p • P(F) = q = 1 - p So how do we answer this question? • n = the number of trials • x = the number of successes in n trials • p = probability of success • q = probability of failure • P(x) = probability of getting exactly x successes in n trials Note that 'Success' in this case, is the probability of selecting a defective alarm.
  • 8. A manufacturer produces 24 yard alarms per week. Six percent of all the alarms produced are defective. What is the probability of getting two defective alarms in one week? binompdf(trials, p, x [this is optional]) trials = number of trials p = P(success) x = specific outcome
  • 9. Now you try ... Elaine is an insurance agent. The probability that she will sell a life insurance policy to a family she visits is 0.7 (she's a really GOOD sales lady). (a) If she sees 8 families today, what is the probability that she will sell exactly 5 policies?
  • 10. Now you try ... Elaine is an insurance agent. The probability that she will sell a life insurance policy to a family she visits is 0.7 (she's a really GOOD sales lady). (b) If she sees 8 families today, what is the probability that she will sell at most 5 policies?
  • 11. The Binomial Coin Experiment http://www.math.uah.edu/stat/applets/BinomialCoinExperiment.xhtml
  • 12. Normal Approximation to the Binomial Distribution We have seen that binomial distributions and their histograms are similar to normal distributions. In certain cases, a binomial distribution is a reasonable approximation of a normal distribution. How can we tell when this is true?
  • 13. Normal Approximation to the Binomial Distribution Recall: In a normal distribution, we used values for μ and σ to solve problems, where: • μ = the population mean, and • σ = the standard deviation In a binomial distribution, we used values for 'n' and 'p' to solve problems, where: • n = number of trials, and • p = probability of success
  • 14. Normal Approximation to the Binomial Distribution We now want to use the normal Link by flickr user jontintinjordan approximation of a binomial distribution. The distribution will be approximately normal if: np ≥ 5 and nq≥ 5 th be is is Once we know that a binomial typ twe the es en LIN distribution can be approximated of the K by a normal curve we can calculate dis se tri tw the values of μ and σ like this: bu o tio ns
  • 15. Normal Approximation to An Example the Binomial Distribution Border patrol officers estimate that 10 percent of the vehicles crossing the US - Canada border carry undeclared goods. One day the officers searched 350 randomly selected vehicles. What is the probability that 40 or more vehicles carried undeclared goods? Is this binomial distribution approximately normal? What is n? Is np ≥ 5? What is μ? What is p? Is nq ≥ 5? What is σ? What is q?
  • 16. Are the following distributions normal approximations of binomial distributions? How do you know? (a) 60 trials where the probability (b) 60 trials where the probability of success on each trial is 0.05 of success on each trial is 0.20 (c) 600 trials where the probability (d) 80 trials where the probability of success on each trial is 0.05 of success on each trial is 0.99
  • 17. Determine the mean and standard deviation for each binomial distribution. Assume that each distribution is a reasonable HOMEWORK approximation to a normal distribution. (a) 50 trials where the probability of success for each trial is 0.35 (b) 44 trials where the probability of failure for each trial is 0.28 (c) The probability of the Espro I engine failing in less than 50 000 km is 0.08. In 1998, 16 000 engines were produced. Find the mean and standard deviation for the engines that did not fail.
  • 18. Solve the following problem using a binomial solution A laboratory supply company breeds rats for lab testing. Assume that male and female rats are equally likely to be born. HOMEWORK (a) What is the probability that of 240 animals born, exactly 110 will be female? (b) What is the probability that of 240 animals born, 110 or more will be female? (c) What is the probability that of 240 animals born, 120 or more will be female? (d) Is it correct to say that, in the above situation, P(x ≥ 120) = P(x > 119), or do we need to account for the values between 119 and 120?
  • 19. HOMEWORK The probability that a student owns a CD player is 3/5. If eight students are selected at random, what is the probability that: (a) exactly four of them own a CD player? (b) all of them own a CD player? (c) none of them own a CD player?
  • 20. HOMEWORK The probability that a motorist will use a credit card for gas purchases at a large service station on the Trans Canada Highway is 7/8. If eight cars pull up to the gas pumps, what is the probability that: (a) seven of them will use a credit card? (b) four of them will use a credit card?