Chapter 17: Probability Models

Size: px
Start display at page:

Download "Chapter 17: Probability Models"

Transcription

1 Chapter 17: Probability Models So far, probability models were developed by considering the physical aspects of simple random phenomena such as coin tossing or randomly sampling of population. There are a handful of probability models that are important in statistical applications. The normal and binomial are the most commonly used. Most of this discussion focuses on the binomial probability model and the binomial random variable. The binomial probability model is used when the random phenomenon is a sequence of independent Bernoulli trials. A Bernoulli trial is a random phenomenon with the following properties: 1. There are only two possible outcomes (generically referred to as successes and failures). 2. The probability of a success p is the same for every trial. Examples: 1. coin toss H or T. 2. true/false question correct or incorrect. 3. ask opinion of a randomly selected individual favor or oppose. 4. generic Bernoulli trial S or F. Independence Random sampling of a finite population and observing a binary response variable on each sample unit does not produce a sequence of Bernoulli trials. Even though the draws are done independently, the probability of a success p changes because random sampling is done without replacement. Example: Draw 10 cards without replacement from a standard deck of 52 cards and observe whether or not each card is an ace. p changes with the trial: Trial p = P (Ace) 1 4/52 2 4/51 (if the first drawn not an Ace) or 3/51 (if the first drawn is an Ace) 3 4/50 or 3/50 or 2/

2 Example: Draw 10 cards with replacement from a standard deck of 52 cards 1 and observe whether or not each card is an ace. p does not change with the trial (p = 1/13 for each trial), and the 10 draws comprise a set of 10 independent Bernoulli trials. Suppose that n independent observations on a binary variable are obtained by randomly sampling a population. These observations can be treated as if they were realizations of n Bernoulli trials without a significant loss of accuracy if the 10% condition holds. The 10% condition: The sample size n is less than 10% of the population size. Example: A random sample of n = 100 Missoula drivers is collected. Each is asked whether they support a ban on cell phone use while driving. Are the responses independent Bernoulli trials? 2 Is the 10% condition satisfied? 3 Example: A random sample of 20 U.S. Senators is identified and each senator in the sample is asked whether or not they support a certain bill. Can the sample responses be analyzed by treating them as if they were realizations of 20 independent Bernoulli trials? 4 The Binomial Model A binomial model describes the distribution of number of successes when the random phenomenon is a sequence of independent Bernoulli trials. Suppose that n independent Bernoulli trials each with probability of success p are observed. Let X count the number of successes in the n trials. The random variable X has a binomial distribution, expressed as X Binom(n, p). The binomial distribution has two parameters: n and p. n is the number of trials and sometimes called the binomial denominator, and p is the probability of success on any trial. Example: Bioassay is an experiment designed to assess the potency of an agent when administered to a living organism. Smith 5 describes a bioassay of an anti-pneumococcus serum 6. 1 Replace each card after drawing it and shuffle the deck 2 No since the 100 drivers are a random sample. 3 Yes since 100 is 10% of 1000, and there are far more than 1000 drivers in Missoula. 4 No since there are 100 US senators and 20% is too large of a sampling fraction. 5 Smith, W The titration of an antipneumococcus serum. J. Pathology, 35, Pneumococcus is the bacterium responsible of pneumonia 125

3 200 mice were randomly assigned to one of five groups, and each group received a dose of serum and a dose of culture pneumococci. The numbers of deaths due to pneumonia within 7 days of inoculation were observed. The number that die at a particular dosage has a binomial distribution with parameters n = 40 and unknown p. The observed value of X at dosage.0028 was 35, so we write X = 35. Presumably, p depends on dosage, so all five counts (one count per dosage) do not follow the same binomial model. The binomial distribution Let X count the number of successes in n independent Bernoulli trials, each with a common probability of success p. X has a discrete distribution, and so there are two lists that comprise the distribution: all possible realizations of X, and the probabilities of each realization. The possible realizations of X are 0, 1, 2,..., n, where n is the number of trials. The probability of a particular realization (e.g., P (X = 0)) can be computed using the following formula. First, let q = 1 p denote the probability of a failure. Then, the probability of x successes in n independent Bernoulli trials is and P (X = x) = ( ) n p x q n x, x = 0, 1,..., n, x ( ) n n! where = x x!(n x)!, x! = { x(x 1) 2 1 if x > 0 1 if x = 0. The formula will be explained after a few more facts are presented. The expected value and standard deviation of the binomial random variable X are: µ = E(X) = np and σ = SD(X) = npq. Example: Suppose that a particular trait (e.g. eye color) is determined by one gene pair and that there are two alleles, d and r that define the gene. The dominant allele is d and the recessive allele is r. The dominant allele will be expressed if the gene pair possessed by an organism is dd, dr or rd. 126

4 Suppose that a child is equally likely to inherit either of the two alleles from each parent and that both parents possess both alleles (both parents are hybrid). Then a child will inherit the gene pair dd, dr, rd, and rr with probabilities 1/4 each. The probability that the dominant allele is expressed in the child is thus p = 3/4. Suppose that four children belong to a family where both parents are hybrid. What is the probability that 3 children express the dominant allele? Each child represents an independent Bernoulli trial resulting in either a expression of the dominant allele d or r. If X counts the number of children expressing d, then X Bin(4, 3/4), and we can use the binomial model to compute P (X = 3): P (X = 3) = ( ) ( ) 3 ( ) = = = The expected number of dominant expressions among the n = 4 children is E(X) = np = = 3. The standard deviation of the number of dominant expressions among the four children is SD(X) = npq = =.866. Using R and the function dbinom 7, the remaining probabilities can be computed quickly. The probability distribution of X is x P (X = x) Binomial probabilities can be computed using StatCrunch: Stat Calculators Binomial Choose from {,, <, >, =} Compute The computation of P (X = 3) was P (X = 3) = ( ) 4 p 3 q 1 3 = The function call is dbinom(0:4,size=4,p=.75). 127

5 The term = is the probability that the alleles of the four children (ordered by age) was (d, d, d, r). But there are 4 = ( 4 3) ways that X = 3 may occur: (d, d, d, r), (d, d, r, d), (d, r, d, d), or (r, d, d, d). Each outcome has the same probability, namely, , so P (X = 3) is The term ( n x) counts the number of ways that x successes can be arranged among n positions and the term p x q n x is the probability of obtaining any one of the arrangements. Example: The probability there are no more than 3 children that express the dominant allele is P (X 3) = P (X = 0) + P (X = 1) + P (X = 2) + P (X = 3) = 1 P (X = 4) = =.684. If the sample size n in a binomial model is large, say n > 500, then n! may be too large for a computer or calculator to compute. In such situations, the normal model usually can be used to approximate the binomial probabilities. More importantly, the normal approximation of the binomial distribution leads to several important inferential methods (confidence intervals and hypothesis tests). The normal approximation to the binomial distribution Suppose that X Binom(n, p) and that np 10 and nq 10. Then, the distribution of X can be accurately approximated by a normal distribution with mean µ = np and standard deviation npq. The approximation is expressed as X N(np, npq). The condition np 10 and nq 10 is called the success/failure condition. Example: Most human traits are not determined by a single gene but by multiple genes. If multiple genes control the trait, then the theorized dominant allele will not be expressed in 75% of the offspring when both parents are hybrids. An analysis of a large number of humans with hybrid parents can confirm or refute the supposition that the trait is controlled by a single gene. 128

6 Suppose that n = 490 individuals are sampled and tested to determine whether the dominant or recessive allele is expressed. 1. How many recessive expressions are expected if the single gene supposition is correct? The random selection of an individual with hybrid parents is a random phenomenon and observing whether or not the recessive allele is expressed is a Bernoulli trial. The observed number recessive allele expressions (out of 490) is a realization of a binomial random variable parameters p =.25 and n = 490. The question can be answered with this knowledge. Suppose that X Binom(490,.25). The expected number of recessive expressions is E(X) = np = = Also SD(X) = npq = = Suppose that X = 150 is the observed number recessive allele expressions. X = 150 is larger than expected, but is it sufficiently large to refute the single-gene supposition? It would be sufficiently large if the probability of obtaining as many or more than 150 recessive allele expressions was very small. A very small probability indicates that either an extremely improbable sample was collected, or the supposition is incorrect and p is larger than.25. We suppose that the sample is not the result of an extremely improbable draw. The probability of obtaining as many or more than 150 recessive allele expressions is P (X 150) = P (X = 150) + P (X = 151) + +P (X = 490). Calculating all of these binomial probabilities can be avoided by using the normal approximation. However, the normal distribution is accurate only if np 10 and nq 10. The normal approximation is accurate since np = and nq = Wile the distribution of X is exactly binomial, it is is also approximately normal with mean µ = and standard deviation σ = In shorthand, X N(122.5, 9.585). 129

7 Returning to the question, P (X 150) ( ) = P Z > = P (Z 2.869) = 1 P (Z < 2.869) = = Using R, a near-exact calculation of the probability is Since the single gene supposition implies that the observed event X 150 is highly unlikely, the conclusion is that supposition is incorrect. Exercise on page 423 : A wildlife biologist examines frogs for a genetic trait he suspects may be linked to sensitivity to industrial toxins in the environment. Previous research has established that this trait is usually found in one of every 8 frogs. Suppose he decides to collect and examine 150 frogs. 1. Determine the mean and standard deviation of the number of frogs with the trait he should expect to find in his sample. (a) Let X Binom(n = 150, p =.125) represent the number in his sample with the trait. (We assume that his sample is a random sample from a very large population of frogs. Then, the number of frogs with the trait satisfies the 10% condition and the binomial distribution is an appropriate model for the count of frogs with the trait). (b) Compute the mean and standard deviation: E(X) = np = = SD(X) = npq = = Can a normal model be used to approximate the distribution of the number of frogs with the trait? (a) Test whether np > 10 and nq > 10. Compute np = = 18.75, nq = =

8 (b) Both numbers are larger than 10, so the answer is yes, a normal distribution can be used as an approximation of the binomial distribution. The N(18.75,4.0505) is an accurate approximation of the binomial distribution. 3. He found the trait in 22 of his frogs. Is X = 22 significant evidence that the trait has become more common? (a) How do we answer the question? If 22 or more frogs is very unlikely to be observed when the expected number of frogs is µ = 18.75, then the conclusion is that the mean is actually larger than because the trait has become more common. (b) Compute the probability of observing 22 or more frogs. That is compute, P (X 22) where X N(18.75, ) P (X 22) = 1 P (X < 22) ( ) = 1 P Z < = 1 P (Z <.8024) = = (c) It is not highly unlikely to have observed 22 or more. While the observed value of 22 is suggestive, it cannot be considered significant evidence that the mean is larger than and that the trait has become more common. 4. Why is the statistical evidence the probability of 22 or more with the trait instead of 22 with the trait? (a) Because all values of X are unlikely. After all, there are n + 1 = 151 possible realizations of X (0, 1,..., 150) and the most likely value is 19 (because µ = 18.75; specifically, P (X = 19) =.0973). (b) A conservative measure of evidence is adopted because scientists are reluctant to contradict existing theories. The conservative measure of evidence is P (X 22), as this probability includes all other outcomes that are as least as unlikely as 22 and suggest that µ > (namely, 23, 24,..., 150). By adding in these additional outcomes to the probability calculation, the scientist is protected from rushing to an incorrect conclusion of significance. 131

Chapter 5. Discrete Probability Distributions

Chapter 5. Discrete Probability Distributions Chapter 5. Discrete Probability Distributions Chapter Problem: Did Mendel s result from plant hybridization experiments contradicts his theory? 1. Mendel s theory says that when there are two inheritable

More information

Chapter 3: DISCRETE RANDOM VARIABLES AND PROBABILITY DISTRIBUTIONS. Part 3: Discrete Uniform Distribution Binomial Distribution

Chapter 3: DISCRETE RANDOM VARIABLES AND PROBABILITY DISTRIBUTIONS. Part 3: Discrete Uniform Distribution Binomial Distribution Chapter 3: DISCRETE RANDOM VARIABLES AND PROBABILITY DISTRIBUTIONS Part 3: Discrete Uniform Distribution Binomial Distribution Sections 3-5, 3-6 Special discrete random variable distributions we will cover

More information

Chapter 5. Random variables

Chapter 5. Random variables Random variables random variable numerical variable whose value is the outcome of some probabilistic experiment; we use uppercase letters, like X, to denote such a variable and lowercase letters, like

More information

Sample Questions for Mastery #5

Sample Questions for Mastery #5 Name: Class: Date: Sample Questions for Mastery #5 Multiple Choice Identify the choice that best completes the statement or answers the question.. For which of the following binomial experiments could

More information

WHERE DOES THE 10% CONDITION COME FROM?

WHERE DOES THE 10% CONDITION COME FROM? 1 WHERE DOES THE 10% CONDITION COME FROM? The text has mentioned The 10% Condition (at least) twice so far: p. 407 Bernoulli trials must be independent. If that assumption is violated, it is still okay

More information

Normal Approximation. Contents. 1 Normal Approximation. 1.1 Introduction. Anthony Tanbakuchi Department of Mathematics Pima Community College

Normal Approximation. Contents. 1 Normal Approximation. 1.1 Introduction. Anthony Tanbakuchi Department of Mathematics Pima Community College Introductory Statistics Lectures Normal Approimation To the binomial distribution Department of Mathematics Pima Community College Redistribution of this material is prohibited without written permission

More information

3.4. The Binomial Probability Distribution. Copyright Cengage Learning. All rights reserved.

3.4. The Binomial Probability Distribution. Copyright Cengage Learning. All rights reserved. 3.4 The Binomial Probability Distribution Copyright Cengage Learning. All rights reserved. The Binomial Probability Distribution There are many experiments that conform either exactly or approximately

More information

DETERMINE whether the conditions for a binomial setting are met. COMPUTE and INTERPRET probabilities involving binomial random variables

DETERMINE whether the conditions for a binomial setting are met. COMPUTE and INTERPRET probabilities involving binomial random variables 1 Section 7.B Learning Objectives After this section, you should be able to DETERMINE whether the conditions for a binomial setting are met COMPUTE and INTERPRET probabilities involving binomial random

More information

Question: What is the probability that a five-card poker hand contains a flush, that is, five cards of the same suit?

Question: What is the probability that a five-card poker hand contains a flush, that is, five cards of the same suit? ECS20 Discrete Mathematics Quarter: Spring 2007 Instructor: John Steinberger Assistant: Sophie Engle (prepared by Sophie Engle) Homework 8 Hints Due Wednesday June 6 th 2007 Section 6.1 #16 What is the

More information

Section 6.1 Discrete Random variables Probability Distribution

Section 6.1 Discrete Random variables Probability Distribution Section 6.1 Discrete Random variables Probability Distribution Definitions a) Random variable is a variable whose values are determined by chance. b) Discrete Probability distribution consists of the values

More information

Section 5-3 Binomial Probability Distributions

Section 5-3 Binomial Probability Distributions Section 5-3 Binomial Probability Distributions Key Concept This section presents a basic definition of a binomial distribution along with notation, and methods for finding probability values. Binomial

More information

SOLUTIONS: 4.1 Probability Distributions and 4.2 Binomial Distributions

SOLUTIONS: 4.1 Probability Distributions and 4.2 Binomial Distributions SOLUTIONS: 4.1 Probability Distributions and 4.2 Binomial Distributions 1. The following table contains a probability distribution for a random variable X. a. Find the expected value (mean) of X. x 1 2

More information

Ch5: Discrete Probability Distributions Section 5-1: Probability Distribution

Ch5: Discrete Probability Distributions Section 5-1: Probability Distribution Recall: Ch5: Discrete Probability Distributions Section 5-1: Probability Distribution A variable is a characteristic or attribute that can assume different values. o Various letters of the alphabet (e.g.

More information

AP: LAB 8: THE CHI-SQUARE TEST. Probability, Random Chance, and Genetics

AP: LAB 8: THE CHI-SQUARE TEST. Probability, Random Chance, and Genetics Ms. Foglia Date AP: LAB 8: THE CHI-SQUARE TEST Probability, Random Chance, and Genetics Why do we study random chance and probability at the beginning of a unit on genetics? Genetics is the study of inheritance,

More information

LAB : THE CHI-SQUARE TEST. Probability, Random Chance, and Genetics

LAB : THE CHI-SQUARE TEST. Probability, Random Chance, and Genetics Period Date LAB : THE CHI-SQUARE TEST Probability, Random Chance, and Genetics Why do we study random chance and probability at the beginning of a unit on genetics? Genetics is the study of inheritance,

More information

LAB : PAPER PET GENETICS. male (hat) female (hair bow) Skin color green or orange Eyes round or square Nose triangle or oval Teeth pointed or square

LAB : PAPER PET GENETICS. male (hat) female (hair bow) Skin color green or orange Eyes round or square Nose triangle or oval Teeth pointed or square Period Date LAB : PAPER PET GENETICS 1. Given the list of characteristics below, you will create an imaginary pet and then breed it to review the concepts of genetics. Your pet will have the following

More information

You flip a fair coin four times, what is the probability that you obtain three heads.

You flip a fair coin four times, what is the probability that you obtain three heads. Handout 4: Binomial Distribution Reading Assignment: Chapter 5 In the previous handout, we looked at continuous random variables and calculating probabilities and percentiles for those type of variables.

More information

AP Statistics 7!3! 6!

AP Statistics 7!3! 6! Lesson 6-4 Introduction to Binomial Distributions Factorials 3!= Definition: n! = n( n 1)( n 2)...(3)(2)(1), n 0 Note: 0! = 1 (by definition) Ex. #1 Evaluate: a) 5! b) 3!(4!) c) 7!3! 6! d) 22! 21! 20!

More information

Binomial Probability Distribution

Binomial Probability Distribution Binomial Probability Distribution In a binomial setting, we can compute probabilities of certain outcomes. This used to be done with tables, but with graphing calculator technology, these problems are

More information

Homework 4 - KEY. Jeff Brenion. June 16, 2004. Note: Many problems can be solved in more than one way; we present only a single solution here.

Homework 4 - KEY. Jeff Brenion. June 16, 2004. Note: Many problems can be solved in more than one way; we present only a single solution here. Homework 4 - KEY Jeff Brenion June 16, 2004 Note: Many problems can be solved in more than one way; we present only a single solution here. 1 Problem 2-1 Since there can be anywhere from 0 to 4 aces, the

More information

WEEK #23: Statistics for Spread; Binomial Distribution

WEEK #23: Statistics for Spread; Binomial Distribution WEEK #23: Statistics for Spread; Binomial Distribution Goals: Study measures of central spread, such interquartile range, variance, and standard deviation. Introduce standard distributions, including the

More information

Section 5 Part 2. Probability Distributions for Discrete Random Variables

Section 5 Part 2. Probability Distributions for Discrete Random Variables Section 5 Part 2 Probability Distributions for Discrete Random Variables Review and Overview So far we ve covered the following probability and probability distribution topics Probability rules Probability

More information

Normal Distribution as an Approximation to the Binomial Distribution

Normal Distribution as an Approximation to the Binomial Distribution Chapter 1 Student Lecture Notes 1-1 Normal Distribution as an Approximation to the Binomial Distribution : Goals ONE TWO THREE 2 Review Binomial Probability Distribution applies to a discrete random variable

More information

Genetics 1. Defective enzyme that does not make melanin. Very pale skin and hair color (albino)

Genetics 1. Defective enzyme that does not make melanin. Very pale skin and hair color (albino) Genetics 1 We all know that children tend to resemble their parents. Parents and their children tend to have similar appearance because children inherit genes from their parents and these genes influence

More information

The Binomial Probability Distribution

The Binomial Probability Distribution The Binomial Probability Distribution MATH 130, Elements of Statistics I J. Robert Buchanan Department of Mathematics Fall 2015 Objectives After this lesson we will be able to: determine whether a probability

More information

ST 371 (IV): Discrete Random Variables

ST 371 (IV): Discrete Random Variables ST 371 (IV): Discrete Random Variables 1 Random Variables A random variable (rv) is a function that is defined on the sample space of the experiment and that assigns a numerical variable to each possible

More information

Normal distribution. ) 2 /2σ. 2π σ

Normal distribution. ) 2 /2σ. 2π σ Normal distribution The normal distribution is the most widely known and used of all distributions. Because the normal distribution approximates many natural phenomena so well, it has developed into a

More information

Chapter 4. Probability and Probability Distributions

Chapter 4. Probability and Probability Distributions Chapter 4. robability and robability Distributions Importance of Knowing robability To know whether a sample is not identical to the population from which it was selected, it is necessary to assess the

More information

4. Continuous Random Variables, the Pareto and Normal Distributions

4. Continuous Random Variables, the Pareto and Normal Distributions 4. Continuous Random Variables, the Pareto and Normal Distributions A continuous random variable X can take any value in a given range (e.g. height, weight, age). The distribution of a continuous random

More information

An Introduction to Basic Statistics and Probability

An Introduction to Basic Statistics and Probability An Introduction to Basic Statistics and Probability Shenek Heyward NCSU An Introduction to Basic Statistics and Probability p. 1/4 Outline Basic probability concepts Conditional probability Discrete Random

More information

statistics Chi-square tests and nonparametric Summary sheet from last time: Hypothesis testing Summary sheet from last time: Confidence intervals

statistics Chi-square tests and nonparametric Summary sheet from last time: Hypothesis testing Summary sheet from last time: Confidence intervals Summary sheet from last time: Confidence intervals Confidence intervals take on the usual form: parameter = statistic ± t crit SE(statistic) parameter SE a s e sqrt(1/n + m x 2 /ss xx ) b s e /sqrt(ss

More information

Lecture 8. Confidence intervals and the central limit theorem

Lecture 8. Confidence intervals and the central limit theorem Lecture 8. Confidence intervals and the central limit theorem Mathematical Statistics and Discrete Mathematics November 25th, 2015 1 / 15 Central limit theorem Let X 1, X 2,... X n be a random sample of

More information

IEOR 6711: Stochastic Models I Fall 2012, Professor Whitt, Tuesday, September 11 Normal Approximations and the Central Limit Theorem

IEOR 6711: Stochastic Models I Fall 2012, Professor Whitt, Tuesday, September 11 Normal Approximations and the Central Limit Theorem IEOR 6711: Stochastic Models I Fall 2012, Professor Whitt, Tuesday, September 11 Normal Approximations and the Central Limit Theorem Time on my hands: Coin tosses. Problem Formulation: Suppose that I have

More information

5.1 Identifying the Target Parameter

5.1 Identifying the Target Parameter University of California, Davis Department of Statistics Summer Session II Statistics 13 August 20, 2012 Date of latest update: August 20 Lecture 5: Estimation with Confidence intervals 5.1 Identifying

More information

HYPOTHESIS TESTING (ONE SAMPLE) - CHAPTER 7 1. used confidence intervals to answer questions such as...

HYPOTHESIS TESTING (ONE SAMPLE) - CHAPTER 7 1. used confidence intervals to answer questions such as... HYPOTHESIS TESTING (ONE SAMPLE) - CHAPTER 7 1 PREVIOUSLY used confidence intervals to answer questions such as... You know that 0.25% of women have red/green color blindness. You conduct a study of men

More information

HYPOTHESIS TESTING (ONE SAMPLE) - CHAPTER 7 1. used confidence intervals to answer questions such as...

HYPOTHESIS TESTING (ONE SAMPLE) - CHAPTER 7 1. used confidence intervals to answer questions such as... HYPOTHESIS TESTING (ONE SAMPLE) - CHAPTER 7 1 PREVIOUSLY used confidence intervals to answer questions such as... You know that 0.25% of women have red/green color blindness. You conduct a study of men

More information

Point and Interval Estimates

Point and Interval Estimates Point and Interval Estimates Suppose we want to estimate a parameter, such as p or µ, based on a finite sample of data. There are two main methods: 1. Point estimate: Summarize the sample by a single number

More information

Random variables, probability distributions, binomial random variable

Random variables, probability distributions, binomial random variable Week 4 lecture notes. WEEK 4 page 1 Random variables, probability distributions, binomial random variable Eample 1 : Consider the eperiment of flipping a fair coin three times. The number of tails that

More information

2 GENETIC DATA ANALYSIS

2 GENETIC DATA ANALYSIS 2.1 Strategies for learning genetics 2 GENETIC DATA ANALYSIS We will begin this lecture by discussing some strategies for learning genetics. Genetics is different from most other biology courses you have

More information

STAT 315: HOW TO CHOOSE A DISTRIBUTION FOR A RANDOM VARIABLE

STAT 315: HOW TO CHOOSE A DISTRIBUTION FOR A RANDOM VARIABLE STAT 315: HOW TO CHOOSE A DISTRIBUTION FOR A RANDOM VARIABLE TROY BUTLER 1. Random variables and distributions We are often presented with descriptions of problems involving some level of uncertainty about

More information

Chapter 5: Normal Probability Distributions - Solutions

Chapter 5: Normal Probability Distributions - Solutions Chapter 5: Normal Probability Distributions - Solutions Note: All areas and z-scores are approximate. Your answers may vary slightly. 5.2 Normal Distributions: Finding Probabilities If you are given that

More information

2 Binomial, Poisson, Normal Distribution

2 Binomial, Poisson, Normal Distribution 2 Binomial, Poisson, Normal Distribution Binomial Distribution ): We are interested in the number of times an event A occurs in n independent trials. In each trial the event A has the same probability

More information

Bio EOC Topics for Cell Reproduction: Bio EOC Questions for Cell Reproduction:

Bio EOC Topics for Cell Reproduction: Bio EOC Questions for Cell Reproduction: Bio EOC Topics for Cell Reproduction: Asexual vs. sexual reproduction Mitosis steps, diagrams, purpose o Interphase, Prophase, Metaphase, Anaphase, Telophase, Cytokinesis Meiosis steps, diagrams, purpose

More information

Statistiek I. Proportions aka Sign Tests. John Nerbonne. CLCG, Rijksuniversiteit Groningen. http://www.let.rug.nl/nerbonne/teach/statistiek-i/

Statistiek I. Proportions aka Sign Tests. John Nerbonne. CLCG, Rijksuniversiteit Groningen. http://www.let.rug.nl/nerbonne/teach/statistiek-i/ Statistiek I Proportions aka Sign Tests John Nerbonne CLCG, Rijksuniversiteit Groningen http://www.let.rug.nl/nerbonne/teach/statistiek-i/ John Nerbonne 1/34 Proportions aka Sign Test The relative frequency

More information

Lesson 17: Margin of Error When Estimating a Population Proportion

Lesson 17: Margin of Error When Estimating a Population Proportion Margin of Error When Estimating a Population Proportion Classwork In this lesson, you will find and interpret the standard deviation of a simulated distribution for a sample proportion and use this information

More information

Math 202-0 Quizzes Winter 2009

Math 202-0 Quizzes Winter 2009 Quiz : Basic Probability Ten Scrabble tiles are placed in a bag Four of the tiles have the letter printed on them, and there are two tiles each with the letters B, C and D on them (a) Suppose one tile

More information

REPEATED TRIALS. The probability of winning those k chosen times and losing the other times is then p k q n k.

REPEATED TRIALS. The probability of winning those k chosen times and losing the other times is then p k q n k. REPEATED TRIALS Suppose you toss a fair coin one time. Let E be the event that the coin lands heads. We know from basic counting that p(e) = 1 since n(e) = 1 and 2 n(s) = 2. Now suppose we play a game

More information

Chapter 5: Discrete Probability Distributions

Chapter 5: Discrete Probability Distributions Chapter 5: Discrete Probability Distributions Section 5.1: Basics of Probability Distributions As a reminder, a variable or what will be called the random variable from now on, is represented by the letter

More information

The Procedures of Monte Carlo Simulation (and Resampling)

The Procedures of Monte Carlo Simulation (and Resampling) 154 Resampling: The New Statistics CHAPTER 10 The Procedures of Monte Carlo Simulation (and Resampling) A Definition and General Procedure for Monte Carlo Simulation Summary Until now, the steps to follow

More information

Evolution (18%) 11 Items Sample Test Prep Questions

Evolution (18%) 11 Items Sample Test Prep Questions Evolution (18%) 11 Items Sample Test Prep Questions Grade 7 (Evolution) 3.a Students know both genetic variation and environmental factors are causes of evolution and diversity of organisms. (pg. 109 Science

More information

6. Let X be a binomial random variable with distribution B(10, 0.6). What is the probability that X equals 8? A) (0.6) (0.4) B) 8! C) 45(0.6) (0.

6. Let X be a binomial random variable with distribution B(10, 0.6). What is the probability that X equals 8? A) (0.6) (0.4) B) 8! C) 45(0.6) (0. Name: Date:. For each of the following scenarios, determine the appropriate distribution for the random variable X. A) A fair die is rolled seven times. Let X = the number of times we see an even number.

More information

Some special discrete probability distributions

Some special discrete probability distributions University of California, Los Angeles Department of Statistics Statistics 100A Instructor: Nicolas Christou Some special discrete probability distributions Bernoulli random variable: It is a variable that

More information

GENETIC CROSSES. Monohybrid Crosses

GENETIC CROSSES. Monohybrid Crosses GENETIC CROSSES Monohybrid Crosses Objectives Explain the difference between genotype and phenotype Explain the difference between homozygous and heterozygous Explain how probability is used to predict

More information

The normal approximation to the binomial

The normal approximation to the binomial The normal approximation to the binomial The binomial probability function is not useful for calculating probabilities when the number of trials n is large, as it involves multiplying a potentially very

More information

Math 3C Homework 3 Solutions

Math 3C Homework 3 Solutions Math 3C Homework 3 s Ilhwan Jo and Akemi Kashiwada ilhwanjo@math.ucla.edu, akashiwada@ucla.edu Assignment: Section 2.3 Problems 2, 7, 8, 9,, 3, 5, 8, 2, 22, 29, 3, 32 2. You draw three cards from a standard

More information

E3: PROBABILITY AND STATISTICS lecture notes

E3: PROBABILITY AND STATISTICS lecture notes E3: PROBABILITY AND STATISTICS lecture notes 2 Contents 1 PROBABILITY THEORY 7 1.1 Experiments and random events............................ 7 1.2 Certain event. Impossible event............................

More information

Chapter 8 Hypothesis Testing Chapter 8 Hypothesis Testing 8-1 Overview 8-2 Basics of Hypothesis Testing

Chapter 8 Hypothesis Testing Chapter 8 Hypothesis Testing 8-1 Overview 8-2 Basics of Hypothesis Testing Chapter 8 Hypothesis Testing 1 Chapter 8 Hypothesis Testing 8-1 Overview 8-2 Basics of Hypothesis Testing 8-3 Testing a Claim About a Proportion 8-5 Testing a Claim About a Mean: s Not Known 8-6 Testing

More information

Math 251, Review Questions for Test 3 Rough Answers

Math 251, Review Questions for Test 3 Rough Answers Math 251, Review Questions for Test 3 Rough Answers 1. (Review of some terminology from Section 7.1) In a state with 459,341 voters, a poll of 2300 voters finds that 45 percent support the Republican candidate,

More information

Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 10

Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 10 CS 70 Discrete Mathematics and Probability Theory Fall 2009 Satish Rao, David Tse Note 10 Introduction to Discrete Probability Probability theory has its origins in gambling analyzing card games, dice,

More information

Section 6.2 Definition of Probability

Section 6.2 Definition of Probability Section 6.2 Definition of Probability Probability is a measure of the likelihood that an event occurs. For example, if there is a 20% chance of rain tomorrow, that means that the probability that it will

More information

Statistics 100A Homework 4 Solutions

Statistics 100A Homework 4 Solutions Problem 1 For a discrete random variable X, Statistics 100A Homework 4 Solutions Ryan Rosario Note that all of the problems below as you to prove the statement. We are proving the properties of epectation

More information

Summary of Formulas and Concepts. Descriptive Statistics (Ch. 1-4)

Summary of Formulas and Concepts. Descriptive Statistics (Ch. 1-4) Summary of Formulas and Concepts Descriptive Statistics (Ch. 1-4) Definitions Population: The complete set of numerical information on a particular quantity in which an investigator is interested. We assume

More information

Math 461 Fall 2006 Test 2 Solutions

Math 461 Fall 2006 Test 2 Solutions Math 461 Fall 2006 Test 2 Solutions Total points: 100. Do all questions. Explain all answers. No notes, books, or electronic devices. 1. [105+5 points] Assume X Exponential(λ). Justify the following two

More information

Section 6-5 Sample Spaces and Probability

Section 6-5 Sample Spaces and Probability 492 6 SEQUENCES, SERIES, AND PROBABILITY 52. How many committees of 4 people are possible from a group of 9 people if (A) There are no restrictions? (B) Both Juan and Mary must be on the committee? (C)

More information

Question of the Day. Key Concepts. Vocabulary. Mathematical Ideas. QuestionofDay

Question of the Day. Key Concepts. Vocabulary. Mathematical Ideas. QuestionofDay QuestionofDay Question of the Day What is the probability that in a family with two children, both are boys? What is the probability that in a family with two children, both are boys, if we already know

More information

6.2. Discrete Probability Distributions

6.2. Discrete Probability Distributions 6.2. Discrete Probability Distributions Discrete Uniform distribution (diskreetti tasajakauma) A random variable X follows the dicrete uniform distribution on the interval [a, a+1,..., b], if it may attain

More information

Central Limit Theorem

Central Limit Theorem Chapter 9 Central Limit Theorem 9.1 Central Limit Theorem for Bernoulli Trials The second fundamental theorem of probability is the Central Limit Theorem. This theorem says that if S n is the sum of n

More information

Conditional Probability, Independence and Bayes Theorem Class 3, 18.05, Spring 2014 Jeremy Orloff and Jonathan Bloom

Conditional Probability, Independence and Bayes Theorem Class 3, 18.05, Spring 2014 Jeremy Orloff and Jonathan Bloom Conditional Probability, Independence and Bayes Theorem Class 3, 18.05, Spring 2014 Jeremy Orloff and Jonathan Bloom 1 Learning Goals 1. Know the definitions of conditional probability and independence

More information

6.3 Conditional Probability and Independence

6.3 Conditional Probability and Independence 222 CHAPTER 6. PROBABILITY 6.3 Conditional Probability and Independence Conditional Probability Two cubical dice each have a triangle painted on one side, a circle painted on two sides and a square painted

More information

The normal approximation to the binomial

The normal approximation to the binomial The normal approximation to the binomial In order for a continuous distribution (like the normal) to be used to approximate a discrete one (like the binomial), a continuity correction should be used. There

More information

Practice Problems #4

Practice Problems #4 Practice Problems #4 PRACTICE PROBLEMS FOR HOMEWORK 4 (1) Read section 2.5 of the text. (2) Solve the practice problems below. (3) Open Homework Assignment #4, solve the problems, and submit multiple-choice

More information

Review. March 21, 2011. 155S7.1 2_3 Estimating a Population Proportion. Chapter 7 Estimates and Sample Sizes. Test 2 (Chapters 4, 5, & 6) Results

Review. March 21, 2011. 155S7.1 2_3 Estimating a Population Proportion. Chapter 7 Estimates and Sample Sizes. Test 2 (Chapters 4, 5, & 6) Results MAT 155 Statistical Analysis Dr. Claude Moore Cape Fear Community College Chapter 7 Estimates and Sample Sizes 7 1 Review and Preview 7 2 Estimating a Population Proportion 7 3 Estimating a Population

More information

MATH 140 Lab 4: Probability and the Standard Normal Distribution

MATH 140 Lab 4: Probability and the Standard Normal Distribution MATH 140 Lab 4: Probability and the Standard Normal Distribution Problem 1. Flipping a Coin Problem In this problem, we want to simualte the process of flipping a fair coin 1000 times. Note that the outcomes

More information

2. Discrete random variables

2. Discrete random variables 2. Discrete random variables Statistics and probability: 2-1 If the chance outcome of the experiment is a number, it is called a random variable. Discrete random variable: the possible outcomes can be

More information

Lecture 5 : The Poisson Distribution

Lecture 5 : The Poisson Distribution Lecture 5 : The Poisson Distribution Jonathan Marchini November 10, 2008 1 Introduction Many experimental situations occur in which we observe the counts of events within a set unit of time, area, volume,

More information

Probability Distributions

Probability Distributions Learning Objectives Probability Distributions Section 1: How Can We Summarize Possible Outcomes and Their Probabilities? 1. Random variable 2. Probability distributions for discrete random variables 3.

More information

Opgaven Onderzoeksmethoden, Onderdeel Statistiek

Opgaven Onderzoeksmethoden, Onderdeel Statistiek Opgaven Onderzoeksmethoden, Onderdeel Statistiek 1. What is the measurement scale of the following variables? a Shoe size b Religion c Car brand d Score in a tennis game e Number of work hours per week

More information

Unit 4 The Bernoulli and Binomial Distributions

Unit 4 The Bernoulli and Binomial Distributions PubHlth 540 4. Bernoulli and Binomial Page 1 of 19 Unit 4 The Bernoulli and Binomial Distributions Topic 1. Review What is a Discrete Probability Distribution... 2. Statistical Expectation.. 3. The Population

More information

Genetics for the Novice

Genetics for the Novice Genetics for the Novice by Carol Barbee Wait! Don't leave yet. I know that for many breeders any article with the word genetics in the title causes an immediate negative reaction. Either they quickly turn

More information

THE FIRST SET OF EXAMPLES USE SUMMARY DATA... EXAMPLE 7.2, PAGE 227 DESCRIBES A PROBLEM AND A HYPOTHESIS TEST IS PERFORMED IN EXAMPLE 7.

THE FIRST SET OF EXAMPLES USE SUMMARY DATA... EXAMPLE 7.2, PAGE 227 DESCRIBES A PROBLEM AND A HYPOTHESIS TEST IS PERFORMED IN EXAMPLE 7. THERE ARE TWO WAYS TO DO HYPOTHESIS TESTING WITH STATCRUNCH: WITH SUMMARY DATA (AS IN EXAMPLE 7.17, PAGE 236, IN ROSNER); WITH THE ORIGINAL DATA (AS IN EXAMPLE 8.5, PAGE 301 IN ROSNER THAT USES DATA FROM

More information

Lecture Note 1 Set and Probability Theory. MIT 14.30 Spring 2006 Herman Bennett

Lecture Note 1 Set and Probability Theory. MIT 14.30 Spring 2006 Herman Bennett Lecture Note 1 Set and Probability Theory MIT 14.30 Spring 2006 Herman Bennett 1 Set Theory 1.1 Definitions and Theorems 1. Experiment: any action or process whose outcome is subject to uncertainty. 2.

More information

The Binomial Distribution The Binomial and Sign Tests

The Binomial Distribution The Binomial and Sign Tests The Binomial Distribution The Hervé Abdi 1 1 Overview The binomial distribution models repeated choices between two alternatives. For example, it will give the probability of obtaining 5 Tails when tossing

More information

Mind on Statistics. Chapter 12

Mind on Statistics. Chapter 12 Mind on Statistics Chapter 12 Sections 12.1 Questions 1 to 6: For each statement, determine if the statement is a typical null hypothesis (H 0 ) or alternative hypothesis (H a ). 1. There is no difference

More information

Probability definitions

Probability definitions Probability definitions 1. Probability of an event = chance that the event will occur. 2. Experiment = any action or process that generates observations. In some contexts, we speak of a data-generating

More information

Basic Probability Concepts

Basic Probability Concepts page 1 Chapter 1 Basic Probability Concepts 1.1 Sample and Event Spaces 1.1.1 Sample Space A probabilistic (or statistical) experiment has the following characteristics: (a) the set of all possible outcomes

More information

5/31/2013. 6.1 Normal Distributions. Normal Distributions. Chapter 6. Distribution. The Normal Distribution. Outline. Objectives.

5/31/2013. 6.1 Normal Distributions. Normal Distributions. Chapter 6. Distribution. The Normal Distribution. Outline. Objectives. The Normal Distribution C H 6A P T E R The Normal Distribution Outline 6 1 6 2 Applications of the Normal Distribution 6 3 The Central Limit Theorem 6 4 The Normal Approximation to the Binomial Distribution

More information

Probability Distributions

Probability Distributions CHAPTER 5 Probability Distributions CHAPTER OUTLINE 5.1 Probability Distribution of a Discrete Random Variable 5.2 Mean and Standard Deviation of a Probability Distribution 5.3 The Binomial Distribution

More information

Characteristics of Binomial Distributions

Characteristics of Binomial Distributions Lesson2 Characteristics of Binomial Distributions In the last lesson, you constructed several binomial distributions, observed their shapes, and estimated their means and standard deviations. In Investigation

More information

Applied Reliability ------------------------------------------------------------------------------------------------------------ Applied Reliability

Applied Reliability ------------------------------------------------------------------------------------------------------------ Applied Reliability Applied Reliability Techniques for Reliability Analysis with Applied Reliability Tools (ART) (an EXCEL Add-In) and JMP Software AM216 Class 6 Notes Santa Clara University Copyright David C. Trindade, Ph.

More information

Point Biserial Correlation Tests

Point Biserial Correlation Tests Chapter 807 Point Biserial Correlation Tests Introduction The point biserial correlation coefficient (ρ in this chapter) is the product-moment correlation calculated between a continuous random variable

More information

Introduction to Hypothesis Testing

Introduction to Hypothesis Testing I. Terms, Concepts. Introduction to Hypothesis Testing A. In general, we do not know the true value of population parameters - they must be estimated. However, we do have hypotheses about what the true

More information

Probability & Probability Distributions

Probability & Probability Distributions Probability & Probability Distributions Carolyn J. Anderson EdPsych 580 Fall 2005 Probability & Probability Distributions p. 1/61 Probability & Probability Distributions Elementary Probability Theory Definitions

More information

Normal Probability Distribution

Normal Probability Distribution Normal Probability Distribution The Normal Distribution functions: #1: normalpdf pdf = Probability Density Function This function returns the probability of a single value of the random variable x. Use

More information

7A The Origin of Modern Genetics

7A The Origin of Modern Genetics Life Science Chapter 7 Genetics of Organisms 7A The Origin of Modern Genetics Genetics the study of inheritance (the study of how traits are inherited through the interactions of alleles) Heredity: the

More information

CHAPTER 6: Continuous Uniform Distribution: 6.1. Definition: The density function of the continuous random variable X on the interval [A, B] is.

CHAPTER 6: Continuous Uniform Distribution: 6.1. Definition: The density function of the continuous random variable X on the interval [A, B] is. Some Continuous Probability Distributions CHAPTER 6: Continuous Uniform Distribution: 6. Definition: The density function of the continuous random variable X on the interval [A, B] is B A A x B f(x; A,

More information

Binomial Sampling and the Binomial Distribution

Binomial Sampling and the Binomial Distribution Binomial Sampling and the Binomial Distribution Characterized by two mutually exclusive events." Examples: GENERAL: {success or failure} {on or off} {head or tail} {zero or one} BIOLOGY: {dead or alive}

More information

For a partition B 1,..., B n, where B i B j = for i. A = (A B 1 ) (A B 2 ),..., (A B n ) and thus. P (A) = P (A B i ) = P (A B i )P (B i )

For a partition B 1,..., B n, where B i B j = for i. A = (A B 1 ) (A B 2 ),..., (A B n ) and thus. P (A) = P (A B i ) = P (A B i )P (B i ) Probability Review 15.075 Cynthia Rudin A probability space, defined by Kolmogorov (1903-1987) consists of: A set of outcomes S, e.g., for the roll of a die, S = {1, 2, 3, 4, 5, 6}, 1 1 2 1 6 for the roll

More information

MATH4427 Notebook 2 Spring 2016. 2 MATH4427 Notebook 2 3. 2.1 Definitions and Examples... 3. 2.2 Performance Measures for Estimators...

MATH4427 Notebook 2 Spring 2016. 2 MATH4427 Notebook 2 3. 2.1 Definitions and Examples... 3. 2.2 Performance Measures for Estimators... MATH4427 Notebook 2 Spring 2016 prepared by Professor Jenny Baglivo c Copyright 2009-2016 by Jenny A. Baglivo. All Rights Reserved. Contents 2 MATH4427 Notebook 2 3 2.1 Definitions and Examples...................................

More information

Heredity. Sarah crosses a homozygous white flower and a homozygous purple flower. The cross results in all purple flowers.

Heredity. Sarah crosses a homozygous white flower and a homozygous purple flower. The cross results in all purple flowers. Heredity 1. Sarah is doing an experiment on pea plants. She is studying the color of the pea plants. Sarah has noticed that many pea plants have purple flowers and many have white flowers. Sarah crosses

More information

CA200 Quantitative Analysis for Business Decisions. File name: CA200_Section_04A_StatisticsIntroduction

CA200 Quantitative Analysis for Business Decisions. File name: CA200_Section_04A_StatisticsIntroduction CA200 Quantitative Analysis for Business Decisions File name: CA200_Section_04A_StatisticsIntroduction Table of Contents 4. Introduction to Statistics... 1 4.1 Overview... 3 4.2 Discrete or continuous

More information