1 / 55

8.1 – The Binomial Distributions

8.1 – The Binomial Distributions. When there are two outcomes to a setting it is said to be a binomial setting. One of success and failure. The number of heads when flipping a coin. The number of free throws made. The number of girls born in a family. The Binomial Setting:. (BINS). B:.

nyx
Télécharger la présentation

8.1 – The Binomial Distributions

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 8.1 – The Binomial Distributions

  2. When there are two outcomes to a setting it is said to be a binomial setting. One of success and failure. • The number of heads when flipping a coin • The number of free throws made • The number of girls born in a family

  3. The Binomial Setting: (BINS) B: Binomial, Success or Failure I: The n observations are independent N: There is a fixed number of observations, n S: The same probability of success for each observation

  4. If the conditions are met, then: The random variable X = the number of successes in n observations. It has a binomial distribution, and is denoted as X ~ B(n,p)

  5. Example #1: Identify each as a binomial distribution. According to the Textbook of Medical Physiology, 9% of the population has blood type B. Suppose we choose 8 people at random from the population and test the blood type of each. Assume that each measurement is independent from the next. B: Binomial, Success = Blood type B or Failure: Not B I: Says to assume N: n = 8 S: Each person has a probability of 0.09 to have blood type B. Let X = # of people with blood type B. Yes, Binomial. X ~ B(8, 0.09)

  6. Example #1: Identify each as a binomial distribution. Privacy is a concern for many users of the Internet. One survey showed that 59% of all Internet users are somewhat concerned about the confidentiality of their email. Assume opinions of users are independent of each other and we select a random sample of 10 Internet users. B: Binomial, Success = Concern for confidentiality or Failure: Not concerned I: Says to assume N: n = 10 Each person has a probability of 0.59 to be concerned S: Yes, Binomial. Let X = # of people with concern for confidentiality X ~ B(10, 0.59)

  7. Example #1: Identify each as a binomial distribution. Deal 10 cards from a shuffled deck and count the number of X red cards. There are 10 observations, and each gives either a red or black card. B: Binomial, Success = Red card or Failure: Not Red I: Not independent! When you take one, it changes the probability of the next one No, Not Binomial.

  8. Binomial Coefficient: The number of ways to arrange k success among n observations (n choose k): Math – Prob – nCr nCk

  9. Example #2 Find how many ways you can arrange 5 out of 7 objects. 21 OR: 7 nCr 5 = 21

  10. Example #3 Suppose I have a group of 4 students and I want to choose 1 of them as a volunteer. In how many ways can I choose 1 out of 4 students? 4 OR: 4 nCr 1 = 4

  11. Binomial Probability: If Xhas the binomial distribution with n observations and probability p of success on each observation, the possible values of X are: P(X = k) = 2nd – Dist – binompdf(n, p, k)

  12. Example #4 According to the Textbook of Medical Physiology, 9% of the population has blood type B. Suppose we choose 8 people at random from the population and test the blood type of each. Assume that each measurement is independent of the next. The number of people we observe with blood type B has the following binomial distribution. a. What is the probability that 3 of these people have blood type B? P(X = 3) = 0.02548

  13. binompdf( n, p, k) OR: binompdf( 8, 0.09, 3) = 0.02548

  14. Example #4 According to the Textbook of Medical Physiology, 9% of the population has blood type B. Suppose we choose 8 people at random from the population and test the blood type of each. Assume that each measurement is independent of the next. The number of people we observe with blood type B has the following binomial distribution. b. What is the probability that no more than 1 of these people have blood type B? P(X = 0) + P(X = 1)

  15. P(X = 0) = 0.47025 P(X = 1) = 0.372068 P(X = 0) + P(X = 1) = 0.47025 + 0.372068 = 0.84232

  16. OR: binompdf( n, p, k) binompdf( 8, 0.09, 0) + binompdf( 8, 0.09, 1) = 0.84232

  17. Binomial Probability: If you are looking for more than one value, you can find that number and less than using the cumulative density function. 2nd – Dist – binomcdf(n, p, k) (Always finds the probability of less than or equal to)

  18. Example #5 A biologist is studying a new hybrid tomato. It is known that the seeds of this hybrid tomato have probability .30 of germinating. The biologist plants 7 seeds. What is the probability that less than 3 seeds will germinate? B: Binomial, Success = Germinating Tomato or Failure: Not germinating I: It is safe to assume independence N: n = 7 Each plant has a probability of 0.30 of germinating S: Yes, Binomial. Let X = The number of germinating tomatoes X ~ B(7, 0.30)

  19. Example #5 A biologist is studying a new hybrid tomato. It is known that the seeds of this hybrid tomato have probability .30 of germinating. The biologist plants 7 seeds. What is the probability that less than 3 seeds will germinate? P(X = 0) + P(X = 1) + P(X = 2) Where n = 7, p = 0.30, k = 2, binomcdf(7, 0.30, 2) = 0.64707

  20. Example #6 The manager of The Burger Eatery notes that there is a 40% chance that the next person who comes in will order a hamburger and a 60% chance that they will order a cheeseburger. What is the probability that, out of the next five customers, at least two will order a hamburger? B: Binomial, Success = Next person orders a burger or Failure: Not order a burger I: It is safe to assume independence N: n = 5 Each person has a probability of 0.40 of ordering a burger S: Yes, Binomial. Let X = The number hamburgers ordered X ~ B(5, 0.40)

  21. Example #6 The manager of The Burger Eatery notes that there is a 40% chance that the next person who comes in will order a hamburger and a 60% chance that they will order a cheeseburger. What is the probability that, out of the next five customers, at least two will order a hamburger? P(X = 2) + P(X = 3) + P(X = 4) + P(X = 5) Where n = 5, p = 0.40, k = 1, 1 – binomcdf(5, 0.40, 1) = 1 – 0.33696 = 0.66304

  22. Mean and Standard Deviation of a Binomial RV: If a count X has the binomial distribution with number of observations n and probability of success p, then:

  23. Example #7 Jim enjoys playing basketball. He makes approximately 50% of his attempts during a game. If he attempts 6 shots in a game, what is the mean and standard deviation of baskets Jim will make? Let X = # of baskets made in a game 6  0.50 = 3 1.2247

  24. Example #8 The management for the mall claims that 20% of the parking space around the mall area is used by the local movie theater goers. A sample of 10 parking spaces was randomly selected. What is the expected number of spaces used by the movie theater goers in the sample? What is the standard deviation of spaces used by the movie theater goers in the sample? Let X = # of parking spaces being used by movie goers 10  0.20 = 2 1.2649

  25. Normal Approximation to the Binomial Distribution: You can use the normal distribution to estimate the probability of a binomial distribution if: Rule of Thumb: and n(1 – p) ≥ 10 np≥ 10 can be approximated by Then: X ~ B(n, p)

  26. Example #9 A recent survey asked a nationwide random sample of 2500 adults if they agreed or disagreed that “I like buying new clothes, but shopping is often frustrating and time-consuming.” Suppose that 60% of all adults would agree if asked this question. a. Are we able to use the normal distribution? Rule of Thumb: and n(1 – p) ≥ 10 np≥ 10 (2500)(1 – 0.60) ≥ 10 (2500)(0.60) ≥ 10 1000 ≥ 10 1500 ≥ 10 Yes

  27. Example #9 A recent survey asked a nationwide random sample of 2500 adults if they agreed or disagreed that “I like buying new clothes, but shopping is often frustrating and time-consuming.” Suppose that 60% of all adults would agree if asked this question. b. What is the mean and standard deviation? Let X = # of people who agree with the quote 2500  0.60 = 1500 24.494897

  28. Example #9 A recent survey asked a nationwide random sample of 2500 adults if they agreed or disagreed that “I like buying new clothes, but shopping is often frustrating and time-consuming.” Suppose that 60% of all adults would agree if asked this question. c. What is the probability that less than 1450 adults would agree if asked this question? x–  Z =  = 24.49 1450 –1500 24.49 = –50 . 24.49 = =1500 1450 = –2.04

  29. Example #9 A recent survey asked a nationwide random sample of 2500 adults if they agreed or disagreed that “I like buying new clothes, but shopping is often frustrating and time-consuming.” Suppose that 60% of all adults would agree if asked this question. c. What is the probability that less than 1450 adults would agree if asked this question? P(Z < – 2.04) =

  30. Example #9 A recent survey asked a nationwide random sample of 2500 adults if they agreed or disagreed that “I like buying new clothes, but shopping is often frustrating and time-consuming.” Suppose that 60% of all adults would agree if asked this question. c. What is the probability that less than 1450 adults would agree if asked this question? P(Z < – 2.04) = 0.0207 OR: normalcdf( -1000000000, 1450, 1500, 24.49) = 0.0206

  31. Example #9 A recent survey asked a nationwide random sample of 2500 adults if they agreed or disagreed that “I like buying new clothes, but shopping is often frustrating and time-consuming.” Suppose that 60% of all adults would agree if asked this question. d. Compare your answer to ‘c’ with the binomial probability setting. binomcdf( n, p, k) Where n = 2500, p = 0.60, k = 1449, binomcdf( 2500, 0.60, 1449) = 0.0198 The binomial probability is slightly smaller, but it is close to the normal approximation.

  32. Example #10 The general ethnic profile of Denver is about 42% minority and 58% Caucasian. Suppose the city of Denver recently hired 60 new grounds and maintenance workers. It claimed that the hiring practice is completely impartial without regard to ethnic background. However, 12 of the new employees were minorities, and a complaint has been filed. a. Are we able to use the normal approximation? Rule of Thumb: and n(1 – p) ≥ 10 np≥ 10 (60)(1 – 0.42) ≥ 10 (60)(0.42) ≥ 10 34.8 ≥ 10 25.2 ≥ 10 Yes

  33. Example #10 The general ethnic profile of Denver is about 42% minority and 58% Caucasian. Suppose the city of Denver recently hired 60 new grounds and maintenance workers. It claimed that the hiring practice is completely impartial without regard to ethnic background. However, 12 of the new employees were minorities, and a complaint has been filed. b. What is the mean and standard deviation? Let X = # of grounds & maintenance workers that are minorities 60  0.42 = 25.2 3.8231

  34. Example #10 The general ethnic profile of Denver is about 42% minority and 58% Caucasian. Suppose the city of Denver recently hired 60 new grounds and maintenance workers. It claimed that the hiring practice is completely impartial without regard to ethnic background. However, 12 of the new employees were minorities, and a complaint has been filed. c. What is the probability that 12 or less minorities are hired as new grounds and maintenance workers? x–  Z =  = 3.823 12 –25.2 3.823 = –13.2. 3.823 = =25.2 12 = –3.45

  35. Example #10 The general ethnic profile of Denver is about 42% minority and 58% Caucasian. Suppose the city of Denver recently hired 60 new grounds and maintenance workers. It claimed that the hiring practice is completely impartial without regard to ethnic background. However, 12 of the new employees were minorities, and a complaint has been filed. c. What is the probability that 12 or less minorities are hired as new grounds and maintenance workers? P(Z < – 3.45) =

  36. Example #10 The general ethnic profile of Denver is about 42% minority and 58% Caucasian. Suppose the city of Denver recently hired 60 new grounds and maintenance workers. It claimed that the hiring practice is completely impartial without regard to ethnic background. However, 12 of the new employees were minorities, and a complaint has been filed. c. What is the probability that 12 or less minorities are hired as new grounds and maintenance workers? P(Z < – 3.45) = 0.0003 OR: normalcdf( -1000000000, 12, 25.2, 3.823) = 0.0002775

  37. 8.2 – The Geometric Distributions

  38. The Geometric Setting: (BINS) B: Binomial: Success and Failure I: Observations are independent N: The number of trials needed to get a success S: The probability of success is the same for each observation

  39. If the conditions for a geometric distribution are met, then: X = # of trials needed for the first success

  40. Geometric Probability: The probability of the first success on the nth trial is: For first success: 2nd – Dist – geometpdf(p, k) For success at or before a number: 2nd – Dist – geometcdf(p, k)

  41. Geometric Probability: The probability that it takes more than n trials to see the first success:

  42. Geometric Probability:

  43. Example #1 Suppose the proportion of people who own a pet in Pleasant City is 0.87. a. Identify the distribution and define X. B: Binomial: Success= own pet and Failure = don’t I: Safe to assume independence. N: The number of trials needed to find a pet owner S: The probability of a pet owner is the same, 0.87 Lex X = # of people needed to find a pet owner

  44. Example #1 • Suppose the proportion of people who own a pet in Pleasant City is 0.87. • b. If a person is chosen at random, what is the probability of choosing a pet owner on the 3rd try? 0.132 • 0.87 = 0.01473 OR: geometpdf(0.87, 3) = 0.014703

  45. Example #1 • Suppose the proportion of people who own a pet in Pleasant City is 0.87. • c. Before the 3rd try? P(X = 0) + P(X = 1) + P(X = 2) Let p = 0.87 and k = 0, 1, and 2 geometcdf(0.87, 2) = 0.9831

  46. Example #1 Suppose the proportion of people who own a pet in Pleasant City is 0.87. d. What is the probability that you find such a pet owner after the 3rd try? 0.002197

  47. Example #1 Suppose the proportion of people who own a pet in Pleasant City is 0.87. e. How many people would you expect to ask before finding a pet owner? 1.149

  48. Example #1 Suppose the proportion of people who own a pet in Pleasant City is 0.87. f. If 30 people are chosen at random, how many pet owners should be expected in the sample? Note: Now n is fixed, and it is binomial 26.1 30 • 0.87 =

More Related