Bernoulli Trials, Binomial and Hypergeometric Distrubutions

Size: px
Start display at page:

Download "Bernoulli Trials, Binomial and Hypergeometric Distrubutions"

Transcription

1 Bernoulli Trials, Binomial and Hypergeometric Distrubutions Definitions: Bernoulli Trial: A random event whose outcome is true (1) or false (). Binomial Distribution: n Bernoulli trials. p The probability of a true (1) outcome (also called a success) q 1-p. The probability of a false () outcome (also called a failure) n The number of trials f(x n, p) The probability density function with sample size n and probabilty of success p. Discussion: MATLAB Example: Flip a coin 1 times. The probability of a heads is 6. First, generate 1 random numbers in the interval (,1): -->X = rand(1,1) X = Change this so each trial is binary ( or 1) with a probability of a 1 being 6: -->X = 1*(X < 6) X = Question: What is the probability of getting a '1' for a single trial? Answer: 6. Call this 'p' in general. JSG 1 rev 8/2/11

2 Question: What is the probability of getting m heads in 2 trials? Answer 1: Enumerate all possibities and probabilities: result probability * * * 6 4 * 4 or, recalling that p = 6: m P(m) 2 1 p 2 (1 p) 1 2 p 1 (1 p) 1 1 p (1 p) 2 Problem: What is the probability of flipping m heads in 3 trials (n=3) Enumerating all combinations (with 1 meaning a heads (success)) n combinations probability (6) 3 (4) 2 11, 11, 11 3 (6) 2 (4) 1 1 1, 1, 1 3 (6) 1 (4) 2 1 (6) (4) 3 The right column is The number of combinations that result in n heads, times the probabilty of a heads (p) occuring n times, times the probability of a tails (1-p) occuring n-m times, where m is the number of flips. Problem: What is the probability of flipping m heads in n trials: This is a binomial distrubution with paramters n amd p: the number of trials (n) and the probability of a success for a given trial (p). f(m n, p)= n m p m (1 p) n m This is called the probability density function (pdf) for a binomial distribution. For example, if p = 6, the probability of flipping 3 heads in 1 trials is f(3)= 1 3 (6) 3 (4) 7 = 425 JSG 2 rev 8/2/11

3 What's kind of neat is the shape of the probabilty density function (p) becomes more 'bell shaped' as the number of trials increases: for i=1:11 m = i-1; f(i) = factorial(n) / ( factorial(m) * factorial(n-m)) * (6 ^ m) * (4 ^ (n-m) ); end sum(f) pdf for a binomial distribition with n=1 pdf for a binomial distribution with n = 1 In the limit as n goes to infinity, you get a continuous distribution called a 'normal distribution.' This is the Central Limit Theorem - coming up soon... JSG 3 rev 8/2/11

4 Pascal's Triangle A kind of neat pattern for the combination n m is as follows: Start with the number 1 (or 1 ) in row #1 Offset row #2 by 1/2 a digit. Add the numbers to the left and right of each spot in row #1 to generate row 2. Offset row #3 by 1/2 a digit. Add the numbers to the left and right of each spot in row #2 to generate row 3. The result is as follows: Each row is the value of n as m goes from zero to n - which is one way of computing combinatorics. If you m shade in the odd entries, you get a pretty picture as well: (in the limit becoming Sierpinski Triangle) SierpinskiTriangle / Pascal's Triangle - source Wikipedia.com JSG 4 rev 8/2/11

5 Binomial Distributions with Multiple Outcomes: Problem: Two people are playing tennis. Person A has a 6% chance of winning a given point. The match is over when the first person wins 4 points (best of 7 series). What's the chance person A wins the match? Solution: Assume all 7 games are played. Person A wins if he/she wins 4, 5, 6, or 7 games. (The match will actually end once you get to 4 wins, but this covers all combinations thereof.) The probability of player A winning is likewise the sum of probability of these four outcomes. The probability of each case is: 4 wins: f(4)= wins: f(5)= wins f(6)= wins: f(7)= 7 7 The total is 712. (6) 4 (4) 3 = 293 (6) 5 (4) 2 = 2613 (6) 6 (4) 1 = 136 (6) 7 (4) = 28 Person A has a 72% chance of winning the match. The 'better' player will win the match 72% of the time. An interesting question is how to set up a tournament so that the best player wins. Problem: Two people are playing tennis. Person A has a 6% chance of winning a given point. The match is over when the first person wins by 4 points. What's the chance person A wins the match? Solution: This is a totally different problem. If person A wins followed by a loss, you're back where you started. The net result is potentially an infinite series. JSG 5 rev 8/2/11

6 Hypergeometric Distribution: Problem: Suppose a box contains A white balls and B black balls. Each trial, you take one ball out of the bin and then put it back into the bin. Find the probability distribution function for drawing n white balls. Solution: This is sampling with replacement. Each trial has the same probability of success (drawing a white ball) p = A A+B The probability of n white balls is then a binomial distribution f(x n, p) = n x p x q n x Problem: Suppose you do not replace the ball after you select it. This changes the problem considerably. First, you cannot draw more white balls than there are balls in the bin and you can't draw more white balls than the total number of balls you draw: x min(n, A) You also cant draw less than zero balls: x max(, n B) The probability of drawing x balls in n draws is from the following: There are A ways of drawing x white balls x B There are ways of drawing the remaining n-x black balls n x The total number of ways you can draw n balls is A + B n So, the pdf for a Hypergeometric distribution is: f(x A, B, n) = A x B n x A+B n JSG 6 rev 8/2/11

7 Problem: A bin has 8 white balls and 1 black balls. You draw 5 balls without replacement. Find the probability that three of the balls are white: f(3 8, 1, 6) = = (56)(45) 8568 = 2941 Problem: Find the probabiliy of drawing three or more white balls. This is the sum of the probability of drawing 3, 4, or 5 white balls. f(4 8, 1, 6) = = (7)(1) 8568 = 817 f(5 8, 1, 6) = The sum of these three is = (56)(1) 8568 = 65 JSG 7 rev 8/2/11

8 Sidelight: If you're curious, here's how to solve the problem of winning by 2 games. If you're not that curious or you find this confusing, don't worry about it. You won't cover this topic until you take an advanced statistics course on Martingales and Markov Chains. Let's define seven states: player A is up 4 games (player A wins) player A is up 3 games player A is up 2 games player A is up 1 games The match is even player B is up 1 games player B is up 2 games player B is up 3 games player B is up 4 games (player B wins) Initally, the match is even so p=1 in the 4th state: X()= x 1 x 2 x 3 x 4 x 5 x 6 x 7 = 1 After one game, there's a 6% chance you'll go to state 3 (player A is up a game) and 4% change you'll og to state 5 (player B is up a game). The same follows for the other states, except for the ends. If player A has won (state 1), you'll end up at state 1 1% of the time. or X 1 = X 1 = A X After 2 games, this becomes X or X 2 = A X 1 In general: X 2 = A 2 X JSG 8 rev 8/2/11

9 X n = A n X In MATLAB, finding the value of A n for n=64 (almost infinity) results in -->A = zeros(7,7); -->A(1,1) = 1; -->A(1,2) = 6; -->A(2,3) = 6; -->A(3,4) = 6; -->A(4,5) = 6; -->A(5,6) = 6; -->A(3,2) = 4; -->A(4,3) = 4; -->A(5,4) = 4; -->A(6,5) = 4; -->A(7,6) = 4; -->A(7,7) = ; -->A Note that the columns add up to one. There's a 1% chance you wind up somewhere after each game. Computing A 64 -->A2 = A*A -->A4 =A2*A2 -->A8 = A4*A4 -->A16 = A8*A8; -->A32 = A16 * A16; -->A64 = A32 * A The initial state is X: -->X = [,,,1,,,]' X = JSG 9 rev 8/2/11

10 After 64 games, the probability you're in a given state is: --->X64 = A64 * X X64 = There's a 7713 chance player A will have won by the 64th game (state 1) 2285 chance player B will have won by the 64th game (state 7), and 377 chance the match is still on-going (the sum of state 2..6) JSG 1 rev 8/2/11

JIGSAW ACTIVITY, TASK # Make sure your answer in written in the correct order. Highest powers of x should come first, down to the lowest powers.

JIGSAW ACTIVITY, TASK # Make sure your answer in written in the correct order. Highest powers of x should come first, down to the lowest powers. JIGSAW ACTIVITY, TASK #1 Your job is to multiply and find all the terms in ( 1) Recall that this means ( + 1)( + 1)( + 1)( + 1) Start by multiplying: ( + 1)( + 1) x x x x. x. + 4 x x. Write your answer

More information

LAMC Junior Circle February 3, Oleg Gleizer. Warm-up

LAMC Junior Circle February 3, Oleg Gleizer. Warm-up LAMC Junior Circle February 3, 2013 Oleg Gleizer oleg1140@gmail.com Warm-up Problem 1 Compute the following. 2 3 ( 4) + 6 2 Problem 2 Can the value of a fraction increase, if we add one to the numerator

More information

Introductory Probability

Introductory Probability Introductory Probability Combinations Nicholas Nguyen nicholas.nguyen@uky.edu Department of Mathematics UK Agenda Assigning Objects to Identical Positions Denitions Committee Card Hands Coin Toss Counts

More information

Description: PUP Math World Series Location: David Brearley High School Kenilworth, NJ Researcher: Professor Carolyn Maher

Description: PUP Math World Series Location: David Brearley High School Kenilworth, NJ Researcher: Professor Carolyn Maher Page: 1 of 5 Line Time Speaker Transcript 1 Narrator In January of 11th grade, the Focus Group of five Kenilworth students met after school to work on a problem they had never seen before: the World Series

More information

ITEC 2600 Introduction to Analytical Programming. Instructor: Prof. Z. Yang Office: DB3049

ITEC 2600 Introduction to Analytical Programming. Instructor: Prof. Z. Yang Office: DB3049 ITEC 2600 Introduction to Analytical Programming Instructor: Prof. Z. Yang Office: DB3049 Lecture Eleven Monte Carlo Simulation Monte Carlo Simulation Monte Carlo simulation is a computerized mathematical

More information

About Permutations and Combinations: Examples

About Permutations and Combinations: Examples About Permutations and Combinations: Examples TABLE OF CONTENTS Basics... 1 Product Rule...1-2 Sum Rule...2 Permutations... 2-3 Combinations... 3-4 Pascal s Triangle... 4 Binomial Theorem.. 4 Pascal s

More information

Math 58. Rumbos Fall Solutions to Exam Give thorough answers to the following questions:

Math 58. Rumbos Fall Solutions to Exam Give thorough answers to the following questions: Math 58. Rumbos Fall 2008 1 Solutions to Exam 2 1. Give thorough answers to the following questions: (a) Define a Bernoulli trial. Answer: A Bernoulli trial is a random experiment with two possible, mutually

More information

DISCUSSION #8 FRIDAY MAY 25 TH Sophie Engle (Teacher Assistant) ECS20: Discrete Mathematics

DISCUSSION #8 FRIDAY MAY 25 TH Sophie Engle (Teacher Assistant) ECS20: Discrete Mathematics DISCUSSION #8 FRIDAY MAY 25 TH 2007 Sophie Engle (Teacher Assistant) ECS20: Discrete Mathematics 2 Homework 8 Hints and Examples 3 Section 5.4 Binomial Coefficients Binomial Theorem 4 Example: j j n n

More information

Honors Precalculus Chapter 9 Summary Basic Combinatorics

Honors Precalculus Chapter 9 Summary Basic Combinatorics Honors Precalculus Chapter 9 Summary Basic Combinatorics A. Factorial: n! means 0! = Why? B. Counting principle: 1. How many different ways can a license plate be formed a) if 7 letters are used and each

More information

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

Section 6.1 #16. Question: What is the probability that a five-card poker hand contains a flush, that is, five cards of the same suit? Section 6.1 #16 What is the probability that a five-card poker hand contains a flush, that is, five cards of the same suit? page 1 Section 6.1 #38 Two events E 1 and E 2 are called independent if p(e 1

More information

Probability Distributions. Probability Distributions. J. Boulton. May 08, 2013 MDM 4U1. Where are we?

Probability Distributions. Probability Distributions. J. Boulton. May 08, 2013 MDM 4U1. Where are we? May 08, 203 robability Distributions robability Distributions The Distribution Binomial Geometric Hypergeometric Using Ecel Advanced applications The Distribution Binomial Geometric Hypergeometric Using

More information

Name Class Date. Introducing Probability Distributions

Name Class Date. Introducing Probability Distributions Name Class Date Binomial Distributions Extension: Distributions Essential question: What is a probability distribution and how is it displayed? 8-6 CC.9 2.S.MD.5(+) ENGAGE Introducing Distributions Video

More information

Probability. March 06, J. Boulton MDM 4U1. P(A) = n(a) n(s) Introductory Probability

Probability. March 06, J. Boulton MDM 4U1. P(A) = n(a) n(s) Introductory Probability Most people think they understand odds and probability. Do you? Decision 1: Pick a card Decision 2: Switch or don't Outcomes: Make a tree diagram Do you think you understand probability? Probability Write

More information

Simulations. 1 The Concept

Simulations. 1 The Concept Simulations In this lab you ll learn how to create simulations to provide approximate answers to probability questions. We ll make use of a particular kind of structure, called a box model, that can be

More information

November 11, Chapter 8: Probability: The Mathematics of Chance

November 11, Chapter 8: Probability: The Mathematics of Chance Chapter 8: Probability: The Mathematics of Chance November 11, 2013 Last Time Probability Models and Rules Discrete Probability Models Equally Likely Outcomes Probability Rules Probability Rules Rule 1.

More information

Junior Circle Meeting 5 Probability. May 2, ii. In an actual experiment, can one get a different number of heads when flipping a coin 100 times?

Junior Circle Meeting 5 Probability. May 2, ii. In an actual experiment, can one get a different number of heads when flipping a coin 100 times? Junior Circle Meeting 5 Probability May 2, 2010 1. We have a standard coin with one side that we call heads (H) and one side that we call tails (T). a. Let s say that we flip this coin 100 times. i. How

More information

Unit 9: Probability Assignments

Unit 9: Probability Assignments Unit 9: Probability Assignments #1: Basic Probability In each of exercises 1 & 2, find the probability that the spinner shown would land on (a) red, (b) yellow, (c) blue. 1. 2. Y B B Y B R Y Y B R 3. Suppose

More information

23 Applications of Probability to Combinatorics

23 Applications of Probability to Combinatorics November 17, 2017 23 Applications of Probability to Combinatorics William T. Trotter trotter@math.gatech.edu Foreword Disclaimer Many of our examples will deal with games of chance and the notion of gambling.

More information

TJP TOP TIPS FOR IGCSE STATS & PROBABILITY

TJP TOP TIPS FOR IGCSE STATS & PROBABILITY TJP TOP TIPS FOR IGCSE STATS & PROBABILITY Dr T J Price, 2011 First, some important words; know what they mean (get someone to test you): Mean the sum of the data values divided by the number of items.

More information

CSC/MTH 231 Discrete Structures II Spring, Homework 5

CSC/MTH 231 Discrete Structures II Spring, Homework 5 CSC/MTH 231 Discrete Structures II Spring, 2010 Homework 5 Name 1. A six sided die D (with sides numbered 1, 2, 3, 4, 5, 6) is thrown once. a. What is the probability that a 3 is thrown? b. What is the

More information

Probability MAT230. Fall Discrete Mathematics. MAT230 (Discrete Math) Probability Fall / 37

Probability MAT230. Fall Discrete Mathematics. MAT230 (Discrete Math) Probability Fall / 37 Probability MAT230 Discrete Mathematics Fall 2018 MAT230 (Discrete Math) Probability Fall 2018 1 / 37 Outline 1 Discrete Probability 2 Sum and Product Rules for Probability 3 Expected Value MAT230 (Discrete

More information

Math 102 Practice for Test 3

Math 102 Practice for Test 3 Math 102 Practice for Test 3 Name Show your work and write all fractions and ratios in simplest form for full credit. 1. If you draw a single card from a standard 52-card deck what is P(King face card)?

More information

Important Distributions 7/17/2006

Important Distributions 7/17/2006 Important Distributions 7/17/2006 Discrete Uniform Distribution All outcomes of an experiment are equally likely. If X is a random variable which represents the outcome of an experiment of this type, then

More information

Foundations of Probability Worksheet Pascal

Foundations of Probability Worksheet Pascal Foundations of Probability Worksheet Pascal The basis of probability theory can be traced back to a small set of major events that set the stage for the development of the field as a branch of mathematics.

More information

1.5 How Often Do Head and Tail Occur Equally Often?

1.5 How Often Do Head and Tail Occur Equally Often? 4 Problems.3 Mean Waiting Time for vs. 2 Peter and Paula play a simple game of dice, as follows. Peter keeps throwing the (unbiased) die until he obtains the sequence in two successive throws. For Paula,

More information

Chapter 2. Permutations and Combinations

Chapter 2. Permutations and Combinations 2. Permutations and Combinations Chapter 2. Permutations and Combinations In this chapter, we define sets and count the objects in them. Example Let S be the set of students in this classroom today. Find

More information

Joint Distributions, Independence Class 7, Jeremy Orloff and Jonathan Bloom

Joint Distributions, Independence Class 7, Jeremy Orloff and Jonathan Bloom Learning Goals Joint Distributions, Independence Class 7, 8.5 Jeremy Orloff and Jonathan Bloom. Understand what is meant by a joint pmf, pdf and cdf of two random variables. 2. Be able to compute probabilities

More information

= = 0.1%. On the other hand, if there are three winning tickets, then the probability of winning one of these winning tickets must be 3 (1)

= = 0.1%. On the other hand, if there are three winning tickets, then the probability of winning one of these winning tickets must be 3 (1) MA 5 Lecture - Binomial Probabilities Wednesday, April 25, 202. Objectives: Introduce combinations and Pascal s triangle. The Fibonacci sequence had a number pattern that we could analyze in different

More information

Midterm Examination Review Solutions MATH 210G Fall 2017

Midterm Examination Review Solutions MATH 210G Fall 2017 Midterm Examination Review Solutions MATH 210G Fall 2017 Instructions: The midterm will be given in class on Thursday, March 16. You will be given the full class period. You will be expected to SHOW WORK

More information

1 2-step and other basic conditional probability problems

1 2-step and other basic conditional probability problems Name M362K Exam 2 Instructions: Show all of your work. You do not have to simplify your answers. No calculators allowed. 1 2-step and other basic conditional probability problems 1. Suppose A, B, C are

More information

Section Summary. Finite Probability Probabilities of Complements and Unions of Events Probabilistic Reasoning

Section Summary. Finite Probability Probabilities of Complements and Unions of Events Probabilistic Reasoning Section 7.1 Section Summary Finite Probability Probabilities of Complements and Unions of Events Probabilistic Reasoning Probability of an Event Pierre-Simon Laplace (1749-1827) We first study Pierre-Simon

More information

Math Exam 2 Review. NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5.

Math Exam 2 Review. NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5. Math 166 Fall 2008 c Heather Ramsey Page 1 Math 166 - Exam 2 Review NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5. Section 3.2 - Measures of Central Tendency

More information

Math Exam 2 Review. NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5.

Math Exam 2 Review. NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5. Math 166 Fall 2008 c Heather Ramsey Page 1 Math 166 - Exam 2 Review NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5. Section 3.2 - Measures of Central Tendency

More information

The study of probability is concerned with the likelihood of events occurring. Many situations can be analyzed using a simplified model of probability

The study of probability is concerned with the likelihood of events occurring. Many situations can be analyzed using a simplified model of probability The study of probability is concerned with the likelihood of events occurring Like combinatorics, the origins of probability theory can be traced back to the study of gambling games Still a popular branch

More information

Week in Review #5 ( , 3.1)

Week in Review #5 ( , 3.1) Math 166 Week-in-Review - S. Nite 10/6/2012 Page 1 of 5 Week in Review #5 (2.3-2.4, 3.1) n( E) In general, the probability of an event is P ( E) =. n( S) Distinguishable Permutations Given a set of n objects

More information

Mathematics Competition Practice Session 6. Hagerstown Community College: STEM Club November 20, :00 pm - 1:00 pm STC-170

Mathematics Competition Practice Session 6. Hagerstown Community College: STEM Club November 20, :00 pm - 1:00 pm STC-170 2015-2016 Mathematics Competition Practice Session 6 Hagerstown Community College: STEM Club November 20, 2015 12:00 pm - 1:00 pm STC-170 1 Warm-Up (2006 AMC 10B No. 17): Bob and Alice each have a bag

More information

Waiting Times. Lesson1. Unit UNIT 7 PATTERNS IN CHANCE

Waiting Times. Lesson1. Unit UNIT 7 PATTERNS IN CHANCE Lesson1 Waiting Times Monopoly is a board game that can be played by several players. Movement around the board is determined by rolling a pair of dice. Winning is based on a combination of chance and

More information

10-1. Combinations. Vocabulary. Lesson. Mental Math. able to compute the number of subsets of size r.

10-1. Combinations. Vocabulary. Lesson. Mental Math. able to compute the number of subsets of size r. Chapter 10 Lesson 10-1 Combinations BIG IDEA With a set of n elements, it is often useful to be able to compute the number of subsets of size r Vocabulary combination number of combinations of n things

More information

Stat 20: Intro to Probability and Statistics

Stat 20: Intro to Probability and Statistics Stat 20: Intro to Probability and Statistics Lecture 17: Using the Normal Curve with Box Models Tessa L. Childers-Day UC Berkeley 23 July 2014 By the end of this lecture... You will be able to: Draw and

More information

A C E. Answers Investigation 3. Applications. 12, or or 1 4 c. Choose Spinner B, because the probability for hot dogs on Spinner A is

A C E. Answers Investigation 3. Applications. 12, or or 1 4 c. Choose Spinner B, because the probability for hot dogs on Spinner A is Answers Investigation Applications. a. Answers will vary, but should be about for red, for blue, and for yellow. b. Possible answer: I divided the large red section in half, and then I could see that the

More information

3.5 Marginal Distributions

3.5 Marginal Distributions STAT 421 Lecture Notes 52 3.5 Marginal Distributions Definition 3.5.1 Suppose that X and Y have a joint distribution. The c.d.f. of X derived by integrating (or summing) over the support of Y is called

More information

MEI Conference Short Open-Ended Investigations for KS3

MEI Conference Short Open-Ended Investigations for KS3 MEI Conference 2012 Short Open-Ended Investigations for KS3 Kevin Lord Kevin.lord@mei.org.uk 10 Ideas for Short Investigations These are some of the investigations that I have used many times with a variety

More information

HW1 is due Thu Oct 12 in the first 5 min of class. Read through chapter 5.

HW1 is due Thu Oct 12 in the first 5 min of class. Read through chapter 5. Stat 100a, Introduction to Probability. Outline for the day: 1. Bayes's rule. 2. Random variables. 3. cdf, pmf, and density. 4. Expected value, continued. 5. All in with AA. 6. Pot odds. 7. Violette vs.

More information

Unit 6: What Do You Expect? Investigation 2: Experimental and Theoretical Probability

Unit 6: What Do You Expect? Investigation 2: Experimental and Theoretical Probability Unit 6: What Do You Expect? Investigation 2: Experimental and Theoretical Probability Lesson Practice Problems Lesson 1: Predicting to Win (Finding Theoretical Probabilities) 1-3 Lesson 2: Choosing Marbles

More information

Part 1: I can express probability as a fraction, decimal, and percent

Part 1: I can express probability as a fraction, decimal, and percent Name: Pattern: Part 1: I can express probability as a fraction, decimal, and percent For #1 to #4, state the probability of each outcome. Write each answer as a) a fraction b) a decimal c) a percent Example:

More information

When a number cube is rolled once, the possible numbers that could show face up are

When a number cube is rolled once, the possible numbers that could show face up are C3 Chapter 12 Understanding Probability Essential question: How can you describe the likelihood of an event? Example 1 Likelihood of an Event When a number cube is rolled once, the possible numbers that

More information

Midterm 2 Practice Problems

Midterm 2 Practice Problems Midterm 2 Practice Problems May 13, 2012 Note that these questions are not intended to form a practice exam. They don t necessarily cover all of the material, or weight the material as I would. They are

More information

The point value of each problem is in the left-hand margin. You must show your work to receive any credit, except on problems 1 & 2. Work neatly.

The point value of each problem is in the left-hand margin. You must show your work to receive any credit, except on problems 1 & 2. Work neatly. Introduction to Statistics Math 1040 Sample Exam II Chapters 5-7 4 Problem Pages 4 Formula/Table Pages Time Limit: 90 Minutes 1 No Scratch Paper Calculator Allowed: Scientific Name: The point value of

More information

Chapter 1. Probability

Chapter 1. Probability Chapter 1. Probability 1.1 Basic Concepts Scientific method a. For a given problem, we define measures that explains the problem well. b. Data is collected with observation and the measures are calculated.

More information

UNIVERSITY OF NORTHERN COLORADO MATHEMATICS CONTEST

UNIVERSITY OF NORTHERN COLORADO MATHEMATICS CONTEST UNIVERSITY OF NORTHERN COLORADO MATHEMATICS CONTEST First Round For all Colorado Students Grades 7-12 October 31, 2009 You have 90 minutes no calculators allowed The average of n numbers is their sum divided

More information

( ) Online MC Practice Quiz KEY Chapter 5: Probability: What Are The Chances?

( ) Online MC Practice Quiz KEY Chapter 5: Probability: What Are The Chances? Online MC Practice Quiz KEY Chapter 5: Probability: What Are The Chances? 1. Research on eating habits of families in a large city produced the following probabilities if a randomly selected household

More information

Probabilities and Probability Distributions

Probabilities and Probability Distributions Probabilities and Probability Distributions George H Olson, PhD Doctoral Program in Educational Leadership Appalachian State University May 2012 Contents Basic Probability Theory Independent vs. Dependent

More information

Grade 8 Math Assignment: Probability

Grade 8 Math Assignment: Probability Grade 8 Math Assignment: Probability Part 1: Rock, Paper, Scissors - The Study of Chance Purpose An introduction of the basic information on probability and statistics Materials: Two sets of hands Paper

More information

Saturday Morning Math Group October 27, Game Theory and Knowing about Knowledge PACKET A

Saturday Morning Math Group October 27, Game Theory and Knowing about Knowledge PACKET A Saturday Morning Math Group October 27, 2012 Game Theory and Knowing about Knowledge PACKET A The table below shows your ( s) payoffs: Situation 1 Role: Row Player ( ) Left Right Up 100 100 Down 0 0 Situation

More information

Math 147 Lecture Notes: Lecture 21

Math 147 Lecture Notes: Lecture 21 Math 147 Lecture Notes: Lecture 21 Walter Carlip March, 2018 The Probability of an Event is greater or less, according to the number of Chances by which it may happen, compared with the whole number of

More information

Problem Set 2. Counting

Problem Set 2. Counting Problem Set 2. Counting 1. (Blitzstein: 1, Q3 Fred is planning to go out to dinner each night of a certain week, Monday through Friday, with each dinner being at one of his favorite ten restaurants. i

More information

Math 1313 Section 6.2 Definition of Probability

Math 1313 Section 6.2 Definition of Probability Math 1313 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

More information

Statistics 1040 Summer 2009 Exam III

Statistics 1040 Summer 2009 Exam III Statistics 1040 Summer 2009 Exam III 1. For the following basic probability questions. Give the RULE used in the appropriate blank (BEFORE the question), for each of the following situations, using one

More information

Mini-Unit. Data & Statistics. Investigation 1: Correlations and Probability in Data

Mini-Unit. Data & Statistics. Investigation 1: Correlations and Probability in Data Mini-Unit Data & Statistics Investigation 1: Correlations and Probability in Data I can Measure Variation in Data and Strength of Association in Two-Variable Data Lesson 3: Probability Probability is a

More information

Hypergeometric Probability Distribution

Hypergeometric Probability Distribution Hypergeometric Probability Distribution Example problem: Suppose 30 people have been summoned for jury selection, and that 12 people will be chosen entirely at random (not how the real process works!).

More information

1. More on Binomial Distributions

1. More on Binomial Distributions Math 25-Introductory Statistics Lecture 9/27/06. More on Binomial Distributions When we toss a coin four times, and we compute the probability of getting three heads, for example, we need to know how many

More information

2 A fair coin is flipped 8 times. What is the probability of getting more heads than tails? A. 1 2 B E. NOTA

2 A fair coin is flipped 8 times. What is the probability of getting more heads than tails? A. 1 2 B E. NOTA For all questions, answer E. "NOTA" means none of the above answers is correct. Calculator use NO calculators will be permitted on any test other than the Statistics topic test. The word "deck" refers

More information

EE 126 Fall 2006 Midterm #1 Thursday October 6, 7 8:30pm DO NOT TURN THIS PAGE OVER UNTIL YOU ARE TOLD TO DO SO

EE 126 Fall 2006 Midterm #1 Thursday October 6, 7 8:30pm DO NOT TURN THIS PAGE OVER UNTIL YOU ARE TOLD TO DO SO EE 16 Fall 006 Midterm #1 Thursday October 6, 7 8:30pm DO NOT TURN THIS PAGE OVER UNTIL YOU ARE TOLD TO DO SO You have 90 minutes to complete the quiz. Write your solutions in the exam booklet. We will

More information

Week 1: Probability models and counting

Week 1: Probability models and counting Week 1: Probability models and counting Part 1: Probability model Probability theory is the mathematical toolbox to describe phenomena or experiments where randomness occur. To have a probability model

More information

There is no class tomorrow! Have a good weekend! Scores will be posted in Compass early Friday morning J

There is no class tomorrow! Have a good weekend! Scores will be posted in Compass early Friday morning J STATISTICS 100 EXAM 3 Fall 2016 PRINT NAME (Last name) (First name) *NETID CIRCLE SECTION: L1 12:30pm L2 3:30pm Online MWF 12pm Write answers in appropriate blanks. When no blanks are provided CIRCLE your

More information

Author(s): Hope Phillips

Author(s): Hope Phillips Title: Game Show Math Real-World Connection: Grade: 8th Author(s): Hope Phillips BIG Idea: Probability On the game show, The Price is Right, Plinko is a favorite! According to www.thepriceisright.com the

More information

18.S34 (FALL, 2007) PROBLEMS ON PROBABILITY

18.S34 (FALL, 2007) PROBLEMS ON PROBABILITY 18.S34 (FALL, 2007) PROBLEMS ON PROBABILITY 1. Three closed boxes lie on a table. One box (you don t know which) contains a $1000 bill. The others are empty. After paying an entry fee, you play the following

More information

Math 3012 Applied Combinatorics Lecture 2

Math 3012 Applied Combinatorics Lecture 2 August 20, 2015 Math 3012 Applied Combinatorics Lecture 2 William T. Trotter trotter@math.gatech.edu The Road Ahead Alert The next two to three lectures will be an integrated approach to material from

More information

Section The Multiplication Principle and Permutations

Section The Multiplication Principle and Permutations Section 2.1 - The Multiplication Principle and Permutations Example 1: A yogurt shop has 4 flavors (chocolate, vanilla, strawberry, and blueberry) and three sizes (small, medium, and large). How many different

More information

Discrete Structures for Computer Science

Discrete Structures for Computer Science Discrete Structures for Computer Science William Garrison bill@cs.pitt.edu 6311 Sennott Square Lecture #23: Discrete Probability Based on materials developed by Dr. Adam Lee The study of probability is

More information

The tenure game. The tenure game. Winning strategies for the tenure game. Winning condition for the tenure game

The tenure game. The tenure game. Winning strategies for the tenure game. Winning condition for the tenure game The tenure game The tenure game is played by two players Alice and Bob. Initially, finitely many tokens are placed at positions that are nonzero natural numbers. Then Alice and Bob alternate in their moves

More information

Mini-Lecture 6.1 Discrete Random Variables

Mini-Lecture 6.1 Discrete Random Variables Mini-Lecture 6.1 Discrete Random Variables Objectives 1. Distinguish between discrete and continuous random variables 2. Identify discrete probability distributions 3. Construct probability histograms

More information

1. Determine whether the following experiments are binomial.

1. Determine whether the following experiments are binomial. Math 141 Exam 3 Review Problem Set Note: Not every topic is covered in this review. It is more heavily weighted on 8.4-8.6. Please also take a look at the previous Week in Reviews for more practice problems

More information

RANDOM EXPERIMENTS AND EVENTS

RANDOM EXPERIMENTS AND EVENTS Random Experiments and Events 18 RANDOM EXPERIMENTS AND EVENTS In day-to-day life we see that before commencement of a cricket match two captains go for a toss. Tossing of a coin is an activity and getting

More information

Game Theory. Problem data representing the situation are constant. They do not vary with respect to time or any other basis.

Game Theory. Problem data representing the situation are constant. They do not vary with respect to time or any other basis. Game Theory For effective decision making. Decision making is classified into 3 categories: o Deterministic Situation: o o Problem data representing the situation are constant. They do not vary with respect

More information

1 of 5 7/16/2009 6:57 AM Virtual Laboratories > 13. Games of Chance > 1 2 3 4 5 6 7 8 9 10 11 3. Simple Dice Games In this section, we will analyze several simple games played with dice--poker dice, chuck-a-luck,

More information

Theory of Probability - Brett Bernstein

Theory of Probability - Brett Bernstein Theory of Probability - Brett Bernstein Lecture 3 Finishing Basic Probability Review Exercises 1. Model flipping two fair coins using a sample space and a probability measure. Compute the probability of

More information

Lesson Lesson 3.7 ~ Theoretical Probability

Lesson Lesson 3.7 ~ Theoretical Probability Theoretical Probability Lesson.7 EXPLORE! sum of two number cubes Step : Copy and complete the chart below. It shows the possible outcomes of one number cube across the top, and a second down the left

More information

CSci 1113: Introduction to C/C++ Programming for Scientists and Engineers Homework 2 Spring 2018

CSci 1113: Introduction to C/C++ Programming for Scientists and Engineers Homework 2 Spring 2018 CSci 1113: Introduction to C/C++ Programming for Scientists and Engineers Homework 2 Spring 2018 Due Date: Thursday, Feb. 15, 2018 before 11:55pm. Instructions: This is an individual homework assignment.

More information

Counting methods (Part 4): More combinations

Counting methods (Part 4): More combinations April 13, 2009 Counting methods (Part 4): More combinations page 1 Counting methods (Part 4): More combinations Recap of last lesson: The combination number n C r is the answer to this counting question:

More information

Compound Events. Identify events as simple or compound.

Compound Events. Identify events as simple or compound. 11.1 Compound Events Lesson Objectives Understand compound events. Represent compound events. Vocabulary compound event possibility diagram simple event tree diagram Understand Compound Events. A compound

More information

4.12 Practice problems

4.12 Practice problems 4. Practice problems In this section we will try to apply the concepts from the previous few sections to solve some problems. Example 4.7. When flipped a coin comes up heads with probability p and tails

More information

If a regular six-sided die is rolled, the possible outcomes can be listed as {1, 2, 3, 4, 5, 6} there are 6 outcomes.

If a regular six-sided die is rolled, the possible outcomes can be listed as {1, 2, 3, 4, 5, 6} there are 6 outcomes. Section 11.1: The Counting Principle 1. Combinatorics is the study of counting the different outcomes of some task. For example If a coin is flipped, the side facing upward will be a head or a tail the

More information

CSI 23 LECTURE NOTES (Ojakian) Topics 5 and 6: Probability Theory

CSI 23 LECTURE NOTES (Ojakian) Topics 5 and 6: Probability Theory CSI 23 LECTURE NOTES (Ojakian) Topics 5 and 6: Probability Theory 1. Probability Theory OUTLINE (References: 5.1, 5.2, 6.1, 6.2, 6.3) 2. Compound Events (using Complement, And, Or) 3. Conditional Probability

More information

Geometric Distribution

Geometric Distribution Geometric Distribution Review Binomial Distribution Properties The experiment consists of n repeated trials. Each trial can result in just two possible outcomes. The probability of success is the same

More information

1 2-step and other basic conditional probability problems

1 2-step and other basic conditional probability problems Name M362K Exam 2 Instructions: Show all of your work. You do not have to simplify your answers. No calculators allowed. 1 2-step and other basic conditional probability problems 1. Suppose A, B, C are

More information

Expectation Variance Discrete Structures

Expectation Variance Discrete Structures Expectation Variance 1 Markov Inequality Y random variable, Y(s) 0, then P( Y x) E(Y)/x Andrei Andreyevich Markov 1856-1922 2 Chebyshev Inequality Y random variable, then P( Y-E(Y) x) V(Y)/x 2 Pafnuty

More information

POKER (AN INTRODUCTION TO COUNTING)

POKER (AN INTRODUCTION TO COUNTING) POKER (AN INTRODUCTION TO COUNTING) LAMC INTERMEDIATE GROUP - 10/27/13 If you want to be a succesful poker player the first thing you need to do is learn combinatorics! Today we are going to count poker

More information

If the sum of two numbers is 4 and their difference is 2, what is their product?

If the sum of two numbers is 4 and their difference is 2, what is their product? 1. If the sum of two numbers is 4 and their difference is 2, what is their product? 2. miles Mary and Ann live at opposite ends of the same road. They plan to leave home at the same time and ride their

More information

Chapter 1. Probability

Chapter 1. Probability Chapter 1. Probability 1.1 Basic Concepts Scientific method a. For a given problem, we define measures that explains the problem well. b. Data is collected with observation and the measures are calculated.

More information

Park Forest Math Team. Meet #5. Self-study Packet

Park Forest Math Team. Meet #5. Self-study Packet Park Forest Math Team Meet #5 Self-study Packet Problem Categories for this Meet: 1. Mystery: Problem solving 2. Geometry: Angle measures in plane figures including supplements and complements 3. Number

More information

Pascal s Triangle: Flipping Coins & Binomial Coefficients. Robert Campbell 5/6/2014 1

Pascal s Triangle: Flipping Coins & Binomial Coefficients. Robert Campbell 5/6/2014 1 Pascal s riangle: Flipping Coins & Binomial Coefficients Robert Campbell 5/6/204 An Experiment Coin Flips Break into teams Flip a coin 6 times Count the number of heads Do this 64 times per team Graph

More information

The Expected Number Of Dice Rolls To Get YAHTZEE

The Expected Number Of Dice Rolls To Get YAHTZEE POTW #- YAHTZEE The Expected Number Of Dice Rolls To Get YAHTZEE John Snyder, FSA January, 0 :0 EST Problem For those not familiar, YAHTZEE is a game played with five standard dice where each player completes

More information

Detailed Solutions of Problems 18 and 21 on the 2017 AMC 10 A (also known as Problems 15 and 19 on the 2017 AMC 12 A)

Detailed Solutions of Problems 18 and 21 on the 2017 AMC 10 A (also known as Problems 15 and 19 on the 2017 AMC 12 A) Detailed Solutions of Problems 18 and 21 on the 2017 AMC 10 A (also known as Problems 15 and 19 on the 2017 AMC 12 A) Henry Wan, Ph.D. We have developed a Solutions Manual that contains detailed solutions

More information

Review Questions on Ch4 and Ch5

Review Questions on Ch4 and Ch5 Review Questions on Ch4 and Ch5 1. Find the mean of the distribution shown. x 1 2 P(x) 0.40 0.60 A) 1.60 B) 0.87 C) 1.33 D) 1.09 2. A married couple has three children, find the probability they are all

More information

Week 3 Classical Probability, Part I

Week 3 Classical Probability, Part I Week 3 Classical Probability, Part I Week 3 Objectives Proper understanding of common statistical practices such as confidence intervals and hypothesis testing requires some familiarity with probability

More information

Business Statistics. Chapter 4 Using Probability and Probability Distributions QMIS 120. Dr. Mohammad Zainal

Business Statistics. Chapter 4 Using Probability and Probability Distributions QMIS 120. Dr. Mohammad Zainal Department of Quantitative Methods & Information Systems Business Statistics Chapter 4 Using Probability and Probability Distributions QMIS 120 Dr. Mohammad Zainal Chapter Goals After completing this chapter,

More information

Class XII Chapter 13 Probability Maths. Exercise 13.1

Class XII Chapter 13 Probability Maths. Exercise 13.1 Exercise 13.1 Question 1: Given that E and F are events such that P(E) = 0.6, P(F) = 0.3 and P(E F) = 0.2, find P (E F) and P(F E). It is given that P(E) = 0.6, P(F) = 0.3, and P(E F) = 0.2 Question 2:

More information

Chapter 8: Probability: The Mathematics of Chance

Chapter 8: Probability: The Mathematics of Chance Chapter 8: Probability: The Mathematics of Chance Free-Response 1. A spinner with regions numbered 1 to 4 is spun and a coin is tossed. Both the number spun and whether the coin lands heads or tails is

More information

Chapter 1: Sets and Probability

Chapter 1: Sets and Probability Chapter 1: Sets and Probability Section 1.3-1.5 Recap: Sample Spaces and Events An is an activity that has observable results. An is the result of an experiment. Example 1 Examples of experiments: Flipping

More information