SlideShare ist ein Scribd-Unternehmen logo
1 von 20
Downloaden Sie, um offline zu lesen
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?

Weitere ähnliche Inhalte

Ähnlich wie Applied 40S April 20, 2009

Applied 40S April 17, 2009
Applied 40S April 17, 2009Applied 40S April 17, 2009
Applied 40S April 17, 2009Darren 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.2herbison
 
Week8finalexamlivelecture april2012
Week8finalexamlivelecture april2012Week8finalexamlivelecture april2012
Week8finalexamlivelecture april2012Brent Heard
 
Week8finalexamlivelecture dec2012
Week8finalexamlivelecture dec2012Week8finalexamlivelecture dec2012
Week8finalexamlivelecture dec2012Brent Heard
 
Binomial distribution good
Binomial distribution goodBinomial distribution good
Binomial distribution goodZahida 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 probabilitypipamutuc
 
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 Answerssojhk
 
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
 
1) The null and alternative hypotheses are giving. Determine whet.docx
1)  The null and alternative hypotheses are giving. Determine whet.docx1)  The null and alternative hypotheses are giving. Determine whet.docx
1) The null and alternative hypotheses are giving. Determine whet.docxdorishigh
 
Statistics lec2
Statistics lec2Statistics lec2
Statistics lec2Hoss 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..docxrafaelaj1
 
Applied Math 40S March 18, 2008
Applied Math 40S March 18, 2008Applied Math 40S March 18, 2008
Applied Math 40S March 18, 2008Darren Kuropatwa
 
STAT 200 Massive Success / snaptutorial.com
STAT 200 Massive Success / snaptutorial.comSTAT 200 Massive Success / snaptutorial.com
STAT 200 Massive Success / snaptutorial.comReynolds79
 
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.docxdirkrplav
 
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.pptCheJavier
 

Ähnlich wie 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 april2012
Week8finalexamlivelecture april2012Week8finalexamlivelecture april2012
Week8finalexamlivelecture april2012
 
Week8finalexamlivelecture dec2012
Week8finalexamlivelecture dec2012Week8finalexamlivelecture dec2012
Week8finalexamlivelecture dec2012
 
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
 
1) The null and alternative hypotheses are giving. Determine whet.docx
1)  The null and alternative hypotheses are giving. Determine whet.docx1)  The null and alternative hypotheses are giving. Determine whet.docx
1) The null and alternative hypotheses are giving. Determine whet.docx
 
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
 

Mehr von Darren Kuropatwa

Providing Permission To Wonder v2.1
Providing Permission To Wonder v2.1Providing Permission To Wonder v2.1
Providing Permission To Wonder v2.1Darren 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 v1Darren Kuropatwa
 
Digital Storytelling for Deeper Learning v1
Digital Storytelling for Deeper Learning v1Digital Storytelling for Deeper Learning v1
Digital Storytelling for Deeper Learning v1Darren 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.2Darren Kuropatwa
 
Making Student Thinking Visible v4
 Making Student Thinking Visible v4 Making Student Thinking Visible v4
Making Student Thinking Visible v4Darren Kuropatwa
 
Leveraging Digital for Deeper Learning
Leveraging Digital for Deeper LearningLeveraging Digital for Deeper Learning
Leveraging Digital for Deeper LearningDarren Kuropatwa
 
We Learn Through Stories at PRIZMAH17
We Learn Through Stories at PRIZMAH17We Learn Through Stories at PRIZMAH17
We Learn Through Stories at PRIZMAH17Darren Kuropatwa
 
Providing Permission to Wonder v3
Providing Permission to Wonder v3Providing Permission to Wonder v3
Providing Permission to Wonder v3Darren Kuropatwa
 
Making Student Thinking Visible v3.7
 Making Student Thinking Visible v3.7 Making Student Thinking Visible v3.7
Making Student Thinking Visible v3.7Darren Kuropatwa
 
Providing Permission to Wonder v2
Providing Permission to Wonder v2Providing Permission to Wonder v2
Providing Permission to Wonder v2Darren 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 ringDarren Kuropatwa
 

Mehr von 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
 

Kürzlich hochgeladen

What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...JojoEDelaCruz
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxMusic 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxleah joy valeriano
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationRosabel UA
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 

Kürzlich hochgeladen (20)

YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxMusic 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translation
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 

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?