Binomal and Geometric Distributions

Size: px
Start display at page:

Download "Binomal and Geometric Distributions"

Transcription

1 Binomal and Geometric Distributions Sections 3.2 & 3.3 Cathy Poliak, Ph.D. Office in Fleming 11c Department of Mathematics University of Houston Lecture Cathy Poliak, Ph.D. Office in Fleming 11c Sections (Department 3.2 & 3.3of Mathematics University of Houston Lecture ) / 24

2 Outline 1 Binomial Distribution 2 Geometric Distribution Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Sections (Department 3.2 & 3.3of Mathematics University of Houston Lecture ) / 24

3 Popper Set Up Fill in all of the proper bubbles. Make sure your ID number is correct. Make sure the filled in circles are very dark. This is popper number 03. Cathy Poliak, Ph.D. Office in Fleming 11c Sections (Department 3.2 & 3.3of Mathematics University of Houston Lecture ) / 24

4 Popper #03 Questions The following is a probability distribution: X Probability Determine the expected value (mean) of this probability distribution. a) 0 b) 2 c) -2 d) Determine the variance of this probability distribution. a) 20 b) 100 c) 96 d) 0 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Sections (Department 3.2 & 3.3of Mathematics University of Houston Lecture ) / 24

5 Popper #03 Questions Suppose a random variable X has a mean of 20, E(X) = 20 and standard deviation of 5, SD(X) = 5. We have a new random variable Y, where Y = 3X What is the mean (epxected value) of Y? a) 20 b) 70 c) 60 d) What is the standard deviation of Y? a) 15 b) 25 c) 75 d) 5 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Sections (Department 3.2 & 3.3of Mathematics University of Houston Lecture ) / 24

6 Popper 03 Questions Wallen Accounting Services specializes in tax preparation for individual tax returns. Data collected from past records reveals that 9% of the returns prepared by Wallen have been selected for audit by the Internal Revenue Service (IRS). 5. Today, Wallen has six new customers. Assume the chances of these six customers being audited are independent. Let X = the number of customers out of the six will be audited. What is the probability that none of the six will be selected for audit? That is P(1st is not audited "and" 2nd is not audited "and" 3rd is not audited "and" 4th is not audited "and" 5th is not audited "and" 6th is not audited). a. 0 b. 1 c d Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Sections (Department 3.2 & 3.3of Mathematics University of Houston Lecture ) / 24

7 Audit Example Let X be the number out of 6 customers that will be audited. The possible values of X are X = {0, 1, 2, 3, 4, 5, 6} What is the probability that exactly one out of the 6 customers will be audited? Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Sections (Department 3.2 & 3.3of Mathematics University of Houston Lecture ) / 24

8 Audit Example From this example we can note a couple of things. 1. We are only looking at six customers, n = We are assuming the chances of these six customers being audited are independent. 3. For each customer, they will either be selected for audit or not be selected for audit. 4. We have the same probability of a person being selected for audit, p = 0.09 for each customer. This type of setting occurs quite frequently that we can put a mathematical model to these types of probability. Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Sections (Department 3.2 & 3.3of Mathematics University of Houston Lecture ) / 24

9 Binomial Setting The previous example falls into a Binomial Setting which follows these 4 rules. 1. There are a fixed number n of observations. 2. The n observations are all independent. That is, knowing the result of one observation tells you nothing about the other observations. 3. Each observation falls into one of just two categories, we call success and failure. 4. The probability of a success p is the same for each observation. Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Sections (Department 3.2 & 3.3of Mathematics University of Houston Lecture ) / 24

10 Binomial? Do these scenarios have a binomial setting? 1. Rolling a die 50 times. 2. Rolling a die 50 times and finding the number of times that 5 occurs. 3. Determining the number of heads up out of three flips / 24

11 Binomial Probability Distribution The distribution of the count X of successes in the Binomial setting has a Binomial probability distribution. Where the parameters for a binomial probability distribution is: n the number of observations p is the probability of a success on any one observation The possible values of X are the whole numbers from 0 to n. As an abbreviation we say, X B(n, p). Binomial probabilities are calculated with the following formula: P(X = k) = n C k p k (1 p) n k / 24

12 Steps to fining the probability 1. Make sure the assumptions are met for the Binomial setting. 2. Describe the success. 3. Determine p, the probability of success. 4. Determine n, the number of trials. 5. Put the probability question in terms of X. That is, P(X = x) or P(X x) or P(X x) or P(X < x) or P(X > X). 6. Determine the probability. We can do this through the formula,in our calculator or R / 24

13 Using the Binomial Formula With the example of Wallen customers being selected for audit, n = 6 and p = What is the probability that exactly one of the six will be selected for audit? 1. We have independence. 2. Success is being audited. 3. p = n = 6 5. We want P(X = 1). We have met the 4 conditions of the binomial setting so we can use the formula: P(X = k) = n C k p k (1 p) (n k). P(X = 1) = 6 C 1 (0.09) 1 (0.91) 5 = / 24

14 Stopping at an intersection Suppose that only 25% of all drivers come to a complete stop at an intersection with a stop sign when not other cars are visible. What is the probability that of the 20 randomly chosen drivers, 1. Exactly 6 will come to a complete stop? 2. No one will come to complete stop? 3. At least one will come to a complete stop? 4. At most 6 will come to a complete stop? / 24

15 Using R or TI-83\84 To find probabilities in R. To find P(X =k) use dbinom(k,n,p). From previous example P(X = 1), k = 1, n = 6, p = 0.09 > dbinom(1,6,0.09) [1] To find P(X k) use pbinom(k,n,p). To find probabilities in TI-83\ 84 use the DISTR button this will give you a list of probability distributions. To find P(X = k) use binompdf(n,p,k). To find P(X k) use binomcdf(n,p,k) / 24

16 Example #2 A fair coin is flipped 30 times. 1. What is the probability that the coin comes up heads exactly 12 times? P(X = 12), n = 30, p = 0.5 > dbinom(12,30,0.5) [1] What is the probability that the coin comes up heads less than 12 times? P(X < 12) = P(X 11) > pbinom(11,30,0.5) [1] What is the probability that the coin comes up heads more than 12 times? P(X > 12) = 1 P(X 12) > 1-pbinom(12,30,0.5) [1] / 24

17 Mean and Variance of a Binomial Distribution If a count X has the Binomial distribution with number of observations n and probability of success p, the mean and variance of X are µ X = E[X] = np σ 2 X = Var[X] = np(1 p) Then the standard deviation is the square root of the variance / 24

18 From text 3.2 # 17 Suppose it is known that 80% of the people exposed to the flu virus will contract the flu. Out of a family of five exposed to the virus, what is the probability that: 1. No one will contract the flu? 2. All will contract the flu? 3. Exactly two will get the flu? 4. At least two will get the flu? / 24

19

20 Example Continued Suppose it is known that 80% of the people exposed to the flu virus will contract the flu. Suppose we have a family of five that were exposed to the flu. 1. Find the mean 2. Find the variance of this distribution / 24

21 Geometric Distribution The geometric distribution is the distribution produced by the random variable X defined to count the number of trials needed to obtain the first success. Examples: Flipping a coin until you get a head, Rolling a die until you get a / 24

22 Conditions A random variable X is geometric if the following conditions are met: 1. Each observation falls into one of just two categories, "success" or "failure." 2. The probability of success is the same for each observation. 3. The variable of interest is the number of trials required to obtain the first success / 24

23 Formula for Geometric Distribution The probability that the first success occurs on the n th trial is: P(X = n) = (1 p) n 1 p Where p is the probability of success. The probability that it takes more than n trials to see the first success is: P(X > n) = (1 p) n R commands:p(x = n) = dgeom(n-1,p) and P(X > n) = 1 pgeom(n 1, p) TI-83\84: P(X = n) = geometpdf(p,n) and P(X > n) = 1 geomtcdf(p, n) / 24

24 Mean and Variance of a Geometric Distribution If a count X has the Geometric distribution with probability of success p, the mean and variance of X are µ x = E[X] = 1 p σ 2 x = Var[X] = 1 p p 2 The standard deviation is the square root of the variance / 24

25 From Text section 3.3 #8 A quarterback completes 44% of his passes. We want to observe this quarterback during one game to see how many passes he makes before completing one pass. 1. What is the probability that the quarterback throws 3 incomplete passes before he has a completion? 2. How many passes can the quarterback expect to throw before he completes a pass? 3. Determine the probability that it takes more than 5 attempts before he completes a pass. 4. What is the probability that he attempts no more than 7 passes before he completes one? / 24

26

Binomial and Geometric Distributions

Binomial and Geometric Distributions Binomial and Geometric Distributions Section 3.2 & 3.3 Cathy Poliak, Ph.D. cathy@math.uh.edu Office hours: T Th 2:30 pm - 5:15 pm 620 PGH Department of Mathematics University of Houston February 11, 2016

More information

Chapter 3 - Lecture 5 The Binomial Probability Distribution

Chapter 3 - Lecture 5 The Binomial Probability Distribution Chapter 3 - Lecture 5 The Binomial Probability October 12th, 2009 Experiment Examples Moments and moment generating function of a Binomial Random Variable Outline Experiment Examples A binomial experiment

More information

Chapter 14 - Random Variables

Chapter 14 - Random Variables Chapter 14 - Random Variables October 29, 2014 There are many scenarios where probabilities are used to determine risk factors. Examples include Insurance, Casino, Lottery, Business, Medical, and other

More information

AP Statistics Ch 8 The Binomial and Geometric Distributions

AP Statistics Ch 8 The Binomial and Geometric Distributions Ch 8.1 The Binomial Distributions The Binomial Setting A situation where these four conditions are satisfied is called a binomial setting. 1. Each observation falls into one of just two categories, which

More information

Shifting our focus. We were studying statistics (data, displays, sampling...) The next few lectures focus on probability (randomness) Why?

Shifting our focus. We were studying statistics (data, displays, sampling...) The next few lectures focus on probability (randomness) Why? Probability Introduction Shifting our focus We were studying statistics (data, displays, sampling...) The next few lectures focus on probability (randomness) Why? What is Probability? Probability is used

More information

The Binomial Distribution

The Binomial Distribution MATH 382 The Binomial Distribution Dr. Neal, WKU Suppose there is a fixed probability p of having an occurrence (or success ) on any single attempt, and a sequence of n independent attempts is made. Then

More information

Probability is the tool used for anticipating what the distribution of data should look like under a given model.

Probability is the tool used for anticipating what the distribution of data should look like under a given model. AP Statistics NAME: Exam Review: Strand 3: Anticipating Patterns Date: Block: III. Anticipating Patterns: Exploring random phenomena using probability and simulation (20%-30%) Probability is the tool used

More information

Binomial Random Variables

Binomial Random Variables Models for Counts Solutions COR1-GB.1305 Statistics and Data Analysis Binomial Random Variables 1. A certain coin has a 25% of landing heads, and a 75% chance of landing tails. (a) If you flip the coin

More information

Standard Normal, Inverse Normal and Sampling Distributions

Standard Normal, Inverse Normal and Sampling Distributions Standard Normal, Inverse Normal and Sampling Distributions Section 5.5 & 6.6 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 9-3339 Cathy

More information

***SECTION 8.1*** The Binomial Distributions

***SECTION 8.1*** The Binomial Distributions ***SECTION 8.1*** The Binomial Distributions CHAPTER 8 ~ The Binomial and Geometric Distributions In practice, we frequently encounter random phenomenon where there are two outcomes of interest. For example,

More information

Part 1 In which we meet the law of averages. The Law of Averages. The Expected Value & The Standard Error. Where Are We Going?

Part 1 In which we meet the law of averages. The Law of Averages. The Expected Value & The Standard Error. Where Are We Going? 1 The Law of Averages The Expected Value & The Standard Error Where Are We Going? Sums of random numbers The law of averages Box models for generating random numbers Sums of draws: the Expected Value Standard

More information

Binomial Random Variables. Binomial Random Variables

Binomial Random Variables. Binomial Random Variables Bernoulli Trials Definition A Bernoulli trial is a random experiment in which there are only two possible outcomes - success and failure. 1 Tossing a coin and considering heads as success and tails as

More information

Statistical Methods in Practice STAT/MATH 3379

Statistical Methods in Practice STAT/MATH 3379 Statistical Methods in Practice STAT/MATH 3379 Dr. A. B. W. Manage Associate Professor of Mathematics & Statistics Department of Mathematics & Statistics Sam Houston State University Overview 6.1 Discrete

More information

Standard Normal Calculations

Standard Normal Calculations Standard Normal Calculations Section 4.3 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 10-2311 Cathy Poliak, Ph.D. cathy@math.uh.edu

More information

MA : Introductory Probability

MA : Introductory Probability MA 320-001: Introductory Probability David Murrugarra Department of Mathematics, University of Kentucky http://www.math.uky.edu/~dmu228/ma320/ Spring 2017 David Murrugarra (University of Kentucky) MA 320:

More information

8.1 Binomial Distributions

8.1 Binomial Distributions 8.1 Binomial Distributions The Binomial Setting The 4 Conditions of a Binomial Setting: 1.Each observation falls into 1 of 2 categories ( success or fail ) 2 2.There is a fixed # n of observations. 3.All

More information

STA 6166 Fall 2007 Web-based Course. Notes 10: Probability Models

STA 6166 Fall 2007 Web-based Course. Notes 10: Probability Models STA 6166 Fall 2007 Web-based Course 1 Notes 10: Probability Models We first saw the normal model as a useful model for the distribution of some quantitative variables. We ve also seen that if we make a

More information

Inverse Normal Distribution and Approximation to Binomial

Inverse Normal Distribution and Approximation to Binomial Inverse Normal Distribution and Approximation to Binomial Section 5.5 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 16-3339 Cathy Poliak,

More information

STOR 155 Introductory Statistics (Chap 5) Lecture 14: Sampling Distributions for Counts and Proportions

STOR 155 Introductory Statistics (Chap 5) Lecture 14: Sampling Distributions for Counts and Proportions The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL STOR 155 Introductory Statistics (Chap 5) Lecture 14: Sampling Distributions for Counts and Proportions 5/31/11 Lecture 14 1 Statistic & Its Sampling Distribution

More information

Chapter 6: Random Variables. Ch. 6-3: Binomial and Geometric Random Variables

Chapter 6: Random Variables. Ch. 6-3: Binomial and Geometric Random Variables Chapter : Random Variables Ch. -3: Binomial and Geometric Random Variables X 0 2 3 4 5 7 8 9 0 0 P(X) 3???????? 4 4 When the same chance process is repeated several times, we are often interested in whether

More information

Discrete Probability Distributions

Discrete Probability Distributions Page 1 of 6 Discrete Probability Distributions In order to study inferential statistics, we need to combine the concepts from descriptive statistics and probability. This combination makes up the basics

More information

Chapter 8: The Binomial and Geometric Distributions

Chapter 8: The Binomial and Geometric Distributions Chapter 8: The Binomial and Geometric Distributions 8.1 Binomial Distributions 8.2 Geometric Distributions 1 Let me begin with an example My best friends from Kent School had three daughters. What is the

More information

ECON 214 Elements of Statistics for Economists 2016/2017

ECON 214 Elements of Statistics for Economists 2016/2017 ECON 214 Elements of Statistics for Economists 2016/2017 Topic Probability Distributions: Binomial and Poisson Distributions Lecturer: Dr. Bernardin Senadza, Dept. of Economics bsenadza@ug.edu.gh College

More information

CHAPTER 4 DISCRETE PROBABILITY DISTRIBUTIONS

CHAPTER 4 DISCRETE PROBABILITY DISTRIBUTIONS CHAPTER 4 DISCRETE PROBABILITY DISTRIBUTIONS A random variable is the description of the outcome of an experiment in words. The verbal description of a random variable tells you how to find or calculate

More information

A random variable (r. v.) is a variable whose value is a numerical outcome of a random phenomenon.

A random variable (r. v.) is a variable whose value is a numerical outcome of a random phenomenon. Chapter 14: random variables p394 A random variable (r. v.) is a variable whose value is a numerical outcome of a random phenomenon. Consider the experiment of tossing a coin. Define a random variable

More information

5.4 Normal Approximation of the Binomial Distribution

5.4 Normal Approximation of the Binomial Distribution 5.4 Normal Approximation of the Binomial Distribution Bernoulli Trials have 3 properties: 1. Only two outcomes - PASS or FAIL 2. n identical trials Review from yesterday. 3. Trials are independent - probability

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 2017 Objectives After this lesson we will be able to: determine whether a probability

More information

Binomial Distributions

Binomial Distributions Binomial Distributions (aka Bernouli s Trials) Chapter 8 Binomial Distribution an important class of probability distributions, which occur under the following Binomial Setting (1) There is a number n

More information

Version A. Problem 1. Let X be the continuous random variable defined by the following pdf: 1 x/2 when 0 x 2, f(x) = 0 otherwise.

Version A. Problem 1. Let X be the continuous random variable defined by the following pdf: 1 x/2 when 0 x 2, f(x) = 0 otherwise. Math 224 Q Exam 3A Fall 217 Tues Dec 12 Version A Problem 1. Let X be the continuous random variable defined by the following pdf: { 1 x/2 when x 2, f(x) otherwise. (a) Compute the mean µ E[X]. E[X] x

More information

Math 14 Lecture Notes Ch. 4.3

Math 14 Lecture Notes Ch. 4.3 4.3 The Binomial Distribution Example 1: The former Sacramento King's DeMarcus Cousins makes 77% of his free throws. If he shoots 3 times, what is the probability that he will make exactly 0, 1, 2, or

More information

chapter 13: Binomial Distribution Exercises (binomial)13.6, 13.12, 13.22, 13.43

chapter 13: Binomial Distribution Exercises (binomial)13.6, 13.12, 13.22, 13.43 chapter 13: Binomial Distribution ch13-links binom-tossing-4-coins binom-coin-example ch13 image Exercises (binomial)13.6, 13.12, 13.22, 13.43 CHAPTER 13: Binomial Distributions The Basic Practice of Statistics

More information

Statistics 6 th Edition

Statistics 6 th Edition Statistics 6 th Edition Chapter 5 Discrete Probability Distributions Chap 5-1 Definitions Random Variables Random Variables Discrete Random Variable Continuous Random Variable Ch. 5 Ch. 6 Chap 5-2 Discrete

More information

Lecture 9: Plinko Probabilities, Part III Random Variables, Expected Values and Variances

Lecture 9: Plinko Probabilities, Part III Random Variables, Expected Values and Variances Physical Principles in Biology Biology 3550 Fall 2018 Lecture 9: Plinko Probabilities, Part III Random Variables, Expected Values and Variances Monday, 10 September 2018 c David P. Goldenberg University

More information

II - Probability. Counting Techniques. three rules of counting. 1multiplication rules. 2permutations. 3combinations

II - Probability. Counting Techniques. three rules of counting. 1multiplication rules. 2permutations. 3combinations II - Probability Counting Techniques three rules of counting 1multiplication rules 2permutations 3combinations Section 2 - Probability (1) II - Probability Counting Techniques 1multiplication rules In

More information

Lecture 8. The Binomial Distribution. Binomial Distribution. Binomial Distribution. Probability Distributions: Normal and Binomial

Lecture 8. The Binomial Distribution. Binomial Distribution. Binomial Distribution. Probability Distributions: Normal and Binomial Lecture 8 The Binomial Distribution Probability Distributions: Normal and Binomial 1 2 Binomial Distribution >A binomial experiment possesses the following properties. The experiment consists of a fixed

More information

Chapter 5 Discrete Probability Distributions. Random Variables Discrete Probability Distributions Expected Value and Variance

Chapter 5 Discrete Probability Distributions. Random Variables Discrete Probability Distributions Expected Value and Variance Chapter 5 Discrete Probability Distributions Random Variables Discrete Probability Distributions Expected Value and Variance.40.30.20.10 0 1 2 3 4 Random Variables A random variable is a numerical description

More information

Unit 04 Review. Probability Rules

Unit 04 Review. Probability Rules Unit 04 Review Probability Rules A sample space contains all the possible outcomes observed in a trial of an experiment, a survey, or some random phenomenon. The sum of the probabilities for all possible

More information

30 Wyner Statistics Fall 2013

30 Wyner Statistics Fall 2013 30 Wyner Statistics Fall 2013 CHAPTER FIVE: DISCRETE PROBABILITY DISTRIBUTIONS Summary, Terms, and Objectives A probability distribution shows the likelihood of each possible outcome. This chapter deals

More information

AP Statistics Test 5

AP Statistics Test 5 AP Statistics Test 5 Name: Date: Period: ffl If X is a discrete random variable, the the mean of X and the variance of X are given by μ = E(X) = X xp (X = x); Var(X) = X (x μ) 2 P (X = x): ffl If X is

More information

6.3: The Binomial Model

6.3: The Binomial Model 6.3: The Binomial Model The Normal distribution is a good model for many situations involving a continuous random variable. For experiments involving a discrete random variable, where the outcome of the

More information

Have you ever wondered whether it would be worth it to buy a lottery ticket every week, or pondered on questions such as If I were offered a choice

Have you ever wondered whether it would be worth it to buy a lottery ticket every week, or pondered on questions such as If I were offered a choice Section 8.5: Expected Value and Variance Have you ever wondered whether it would be worth it to buy a lottery ticket every week, or pondered on questions such as If I were offered a choice between a million

More information

Chapter 3 Discrete Random Variables and Probability Distributions

Chapter 3 Discrete Random Variables and Probability Distributions Chapter 3 Discrete Random Variables and Probability Distributions Part 4: Special Discrete Random Variable Distributions Sections 3.7 & 3.8 Geometric, Negative Binomial, Hypergeometric NOTE: The discrete

More information

Chapter 3 - Lecture 3 Expected Values of Discrete Random Va

Chapter 3 - Lecture 3 Expected Values of Discrete Random Va Chapter 3 - Lecture 3 Expected Values of Discrete Random Variables October 5th, 2009 Properties of expected value Standard deviation Shortcut formula Properties of the variance Properties of expected value

More information

A probability distribution shows the possible outcomes of an experiment and the probability of each of these outcomes.

A probability distribution shows the possible outcomes of an experiment and the probability of each of these outcomes. Introduction In the previous chapter we discussed the basic concepts of probability and described how the rules of addition and multiplication were used to compute probabilities. In this chapter we expand

More information

Lecture 9. Probability Distributions. Outline. Outline

Lecture 9. Probability Distributions. Outline. Outline Outline Lecture 9 Probability Distributions 6-1 Introduction 6- Probability Distributions 6-3 Mean, Variance, and Expectation 6-4 The Binomial Distribution Outline 7- Properties of the Normal Distribution

More information

Probability Theory and Simulation Methods. April 9th, Lecture 20: Special distributions

Probability Theory and Simulation Methods. April 9th, Lecture 20: Special distributions April 9th, 2018 Lecture 20: Special distributions Week 1 Chapter 1: Axioms of probability Week 2 Chapter 3: Conditional probability and independence Week 4 Chapters 4, 6: Random variables Week 9 Chapter

More information

Estimation. Focus Points 10/11/2011. Estimating p in the Binomial Distribution. Section 7.3

Estimation. Focus Points 10/11/2011. Estimating p in the Binomial Distribution. Section 7.3 Estimation 7 Copyright Cengage Learning. All rights reserved. Section 7.3 Estimating p in the Binomial Distribution Copyright Cengage Learning. All rights reserved. Focus Points Compute the maximal length

More information

The binomial distribution p314

The binomial distribution p314 The binomial distribution p314 Example: A biased coin (P(H) = p = 0.6) ) is tossed 5 times. Let X be the number of H s. Fine P(X = 2). This X is a binomial r. v. The binomial setting p314 1. There are

More information

Section Distributions of Random Variables

Section Distributions of Random Variables Section 8.1 - Distributions of Random Variables Definition: A random variable is a rule that assigns a number to each outcome of an experiment. Example 1: Suppose we toss a coin three times. Then we could

More information

STA258H5. Al Nosedal and Alison Weir. Winter Al Nosedal and Alison Weir STA258H5 Winter / 41

STA258H5. Al Nosedal and Alison Weir. Winter Al Nosedal and Alison Weir STA258H5 Winter / 41 STA258H5 Al Nosedal and Alison Weir Winter 2017 Al Nosedal and Alison Weir STA258H5 Winter 2017 1 / 41 NORMAL APPROXIMATION TO THE BINOMIAL DISTRIBUTION. Al Nosedal and Alison Weir STA258H5 Winter 2017

More information

Lecture 9. Probability Distributions

Lecture 9. Probability Distributions Lecture 9 Probability Distributions Outline 6-1 Introduction 6-2 Probability Distributions 6-3 Mean, Variance, and Expectation 6-4 The Binomial Distribution Outline 7-2 Properties of the Normal Distribution

More information

Chapter 8. Binomial and Geometric Distributions

Chapter 8. Binomial and Geometric Distributions Chapter 8 Binomial and Geometric Distributions Lesson 8-1, Part 1 Binomial Distribution What is a Binomial Distribution? Specific type of discrete probability distribution The outcomes belong to two categories

More information

Section 7.5 The Normal Distribution. Section 7.6 Application of the Normal Distribution

Section 7.5 The Normal Distribution. Section 7.6 Application of the Normal Distribution Section 7.6 Application of the Normal Distribution A random variable that may take on infinitely many values is called a continuous random variable. A continuous probability distribution is defined by

More information

A random variable (r. v.) is a variable whose value is a numerical outcome of a random phenomenon.

A random variable (r. v.) is a variable whose value is a numerical outcome of a random phenomenon. Chapter 14: random variables p394 A random variable (r. v.) is a variable whose value is a numerical outcome of a random phenomenon. Consider the experiment of tossing a coin. Define a random variable

More information

TRUE-FALSE: Determine whether each of the following statements is true or false.

TRUE-FALSE: Determine whether each of the following statements is true or false. Chapter 6 Test Review Name TRUE-FALSE: Determine whether each of the following statements is true or false. 1) A random variable is continuous when the set of possible values includes an entire interval

More information

Econ 6900: Statistical Problems. Instructor: Yogesh Uppal

Econ 6900: Statistical Problems. Instructor: Yogesh Uppal Econ 6900: Statistical Problems Instructor: Yogesh Uppal Email: yuppal@ysu.edu Lecture Slides 4 Random Variables Probability Distributions Discrete Distributions Discrete Uniform Probability Distribution

More information

CHAPTER 6 Random Variables

CHAPTER 6 Random Variables CHAPTER 6 Random Variables 6.3 Binomial and Geometric Random Variables The Practice of Statistics, 5th Edition Starnes, Tabor, Yates, Moore Bedford Freeman Worth Publishers Binomial and Geometric Random

More information

4.2 Bernoulli Trials and Binomial Distributions

4.2 Bernoulli Trials and Binomial Distributions Arkansas Tech University MATH 3513: Applied Statistics I Dr. Marcel B. Finan 4.2 Bernoulli Trials and Binomial Distributions A Bernoulli trial 1 is an experiment with exactly two outcomes: Success and

More information

Chpt The Binomial Distribution

Chpt The Binomial Distribution Chpt 5 5-4 The Binomial Distribution 1 /36 Chpt 5-4 Chpt 5 Homework p262 Applying the Concepts Exercises p263 1-11, 14-18, 23, 24, 26 2 /36 Objective Chpt 5 Find the exact probability for x successes in

More information

MA 1125 Lecture 14 - Expected Values. Wednesday, October 4, Objectives: Introduce expected values.

MA 1125 Lecture 14 - Expected Values. Wednesday, October 4, Objectives: Introduce expected values. MA 5 Lecture 4 - Expected Values Wednesday, October 4, 27 Objectives: Introduce expected values.. Means, Variances, and Standard Deviations of Probability Distributions Two classes ago, we computed the

More information

(# of die rolls that satisfy the criteria) (# of possible die rolls)

(# of die rolls that satisfy the criteria) (# of possible die rolls) BMI 713: Computational Statistics for Biomedical Sciences Assignment 2 1 Random variables and distributions 1. Assume that a die is fair, i.e. if the die is rolled once, the probability of getting each

More information

MA 1125 Lecture 12 - Mean and Standard Deviation for the Binomial Distribution. Objectives: Mean and standard deviation for the binomial distribution.

MA 1125 Lecture 12 - Mean and Standard Deviation for the Binomial Distribution. Objectives: Mean and standard deviation for the binomial distribution. MA 5 Lecture - Mean and Standard Deviation for the Binomial Distribution Friday, September 9, 07 Objectives: Mean and standard deviation for the binomial distribution.. Mean and Standard Deviation of the

More information

Review of the Topics for Midterm I

Review of the Topics for Midterm I Review of the Topics for Midterm I STA 100 Lecture 9 I. Introduction The objective of statistics is to make inferences about a population based on information contained in a sample. A population is the

More information

AMS 7 Sampling Distributions, Central limit theorem, Confidence Intervals Lecture 4

AMS 7 Sampling Distributions, Central limit theorem, Confidence Intervals Lecture 4 AMS 7 Sampling Distributions, Central limit theorem, Confidence Intervals Lecture 4 Department of Applied Mathematics and Statistics, University of California, Santa Cruz Summer 2014 1 / 26 Sampling Distributions!!!!!!

More information

Probability Distributions. Definitions Discrete vs. Continuous Mean and Standard Deviation TI 83/84 Calculator Binomial Distribution

Probability Distributions. Definitions Discrete vs. Continuous Mean and Standard Deviation TI 83/84 Calculator Binomial Distribution Probability Distributions Definitions Discrete vs. Continuous Mean and Standard Deviation TI 83/84 Calculator Binomial Distribution Definitions Random Variable: a variable that has a single numerical value

More information

2) There is a fixed number of observations n. 3) The n observations are all independent

2) There is a fixed number of observations n. 3) The n observations are all independent Chapter 8 Binomial and Geometric Distributions The binomial setting consists of the following 4 characteristics: 1) Each observation falls into one of two categories success or failure 2) There is a fixed

More information

Chapter 3 Discrete Random Variables and Probability Distributions

Chapter 3 Discrete Random Variables and Probability Distributions Chapter 3 Discrete Random Variables and Probability Distributions Part 2: Mean and Variance of a Discrete Random Variable Section 3.4 1 / 16 Discrete Random Variable - Expected Value In a random experiment,

More information

Mathematics of Randomness

Mathematics of Randomness Ch 5 Probability: The Mathematics of Randomness 5.1.1 Random Variables and Their Distributions A random variable is a quantity that (prior to observation) can be thought of as dependent on chance phenomena.

More information

5.2 Random Variables, Probability Histograms and Probability Distributions

5.2 Random Variables, Probability Histograms and Probability Distributions Chapter 5 5.2 Random Variables, Probability Histograms and Probability Distributions A random variable (r.v.) can be either continuous or discrete. It takes on the possible values of an experiment. It

More information

5.4 Normal Approximation of the Binomial Distribution Lesson MDM4U Jensen

5.4 Normal Approximation of the Binomial Distribution Lesson MDM4U Jensen 5.4 Normal Approximation of the Binomial Distribution Lesson MDM4U Jensen Review From Yesterday Bernoulli Trials have 3 properties: 1. 2. 3. Binomial Probability Distribution In a binomial experiment with

More information

MATH 264 Problem Homework I

MATH 264 Problem Homework I MATH Problem Homework I Due to December 9, 00@:0 PROBLEMS & SOLUTIONS. A student answers a multiple-choice examination question that offers four possible answers. Suppose that the probability that the

More information

MAKING SENSE OF DATA Essentials series

MAKING SENSE OF DATA Essentials series MAKING SENSE OF DATA Essentials series THE NORMAL DISTRIBUTION Copyright by City of Bradford MDC Prerequisites Descriptive statistics Charts and graphs The normal distribution Surveys and sampling Correlation

More information

Binomial and Normal Distributions

Binomial and Normal Distributions Binomial and Normal Distributions Bernoulli Trials A Bernoulli trial is a random experiment with 2 special properties: The result of a Bernoulli trial is binary. Examples: Heads vs. Tails, Healthy vs.

More information

Some Discrete Distribution Families

Some Discrete Distribution Families Some Discrete Distribution Families ST 370 Many families of discrete distributions have been studied; we shall discuss the ones that are most commonly found in applications. In each family, we need a formula

More information

Random Variables CHAPTER 6.3 BINOMIAL AND GEOMETRIC RANDOM VARIABLES

Random Variables CHAPTER 6.3 BINOMIAL AND GEOMETRIC RANDOM VARIABLES Random Variables CHAPTER 6.3 BINOMIAL AND GEOMETRIC RANDOM VARIABLES Essential Question How can I determine whether the conditions for using binomial random variables are met? Binomial Settings When the

More information

Discrete Probability Distributions

Discrete Probability Distributions Discrete Probability Distributions Discrete Probability Distribution Are used to model outcomes that only have a finite number of possible values. For example, the number of congenitally missing third

More information

Probability Models.S2 Discrete Random Variables

Probability Models.S2 Discrete Random Variables Probability Models.S2 Discrete Random Variables Operations Research Models and Methods Paul A. Jensen and Jonathan F. Bard Results of an experiment involving uncertainty are described by one or more random

More information

VIDEO 1. A random variable is a quantity whose value depends on chance, for example, the outcome when a die is rolled.

VIDEO 1. A random variable is a quantity whose value depends on chance, for example, the outcome when a die is rolled. Part 1: Probability Distributions VIDEO 1 Name: 11-10 Probability and Binomial Distributions A random variable is a quantity whose value depends on chance, for example, the outcome when a die is rolled.

More information

3. The n observations are independent. Knowing the result of one observation tells you nothing about the other observations.

3. The n observations are independent. Knowing the result of one observation tells you nothing about the other observations. Binomial and Geometric Distributions - Terms and Formulas Binomial Experiments - experiments having all four conditions: 1. Each observation falls into one of two categories we call them success or failure.

More information

Section Random Variables

Section Random Variables Section 6.2 - Random Variables According to the Bureau of the Census, the latest family data pertaining to family size for a small midwestern town, Nomore, is shown in Table 6.. If a family from this town

More information

Discrete Probability Distribution

Discrete Probability Distribution 1 Discrete Probability Distribution Key Definitions Discrete Random Variable: Has a countable number of values. This means that each data point is distinct and separate. Continuous Random Variable: Has

More information

The Central Limit Theorem. Sec. 8.2: The Random Variable. it s Distribution. it s Distribution

The Central Limit Theorem. Sec. 8.2: The Random Variable. it s Distribution. it s Distribution The Central Limit Theorem Sec. 8.1: The Random Variable it s Distribution Sec. 8.2: The Random Variable it s Distribution X p and and How Should You Think of a Random Variable? Imagine a bag with numbers

More information

4.1 Probability Distributions

4.1 Probability Distributions Probability and Statistics Mrs. Leahy Chapter 4: Discrete Probability Distribution ALWAYS KEEP IN MIND: The Probability of an event is ALWAYS between: and!!!! 4.1 Probability Distributions Random Variables

More information

Math 243 Section 4.3 The Binomial Distribution

Math 243 Section 4.3 The Binomial Distribution Math 243 Section 4.3 The Binomial Distribution Overview Notation for the mean, standard deviation and variance The Binomial Model Bernoulli Trials Notation for the mean, standard deviation and variance

More information

Chapter 4 and 5 Note Guide: Probability Distributions

Chapter 4 and 5 Note Guide: Probability Distributions Chapter 4 and 5 Note Guide: Probability Distributions Probability Distributions for a Discrete Random Variable A discrete probability distribution function has two characteristics: Each probability is

More information

Chapter 6: Random Variables

Chapter 6: Random Variables Chapter 6: Random Variables Section 6.1 Discrete and Continuous Random Variables The Practice of Statistics, 4 th edition For AP* STARNES, YATES, MOORE Chapter 6 Random Variables 6.1 Discrete and Continuous

More information

(Practice Version) Midterm Exam 1

(Practice Version) Midterm Exam 1 EECS 126 Probability and Random Processes University of California, Berkeley: Fall 2014 Kannan Ramchandran September 19, 2014 (Practice Version) Midterm Exam 1 Last name First name SID Rules. DO NOT open

More information

Example 1: Identify the following random variables as discrete or continuous: a) Weight of a package. b) Number of students in a first-grade classroom

Example 1: Identify the following random variables as discrete or continuous: a) Weight of a package. b) Number of students in a first-grade classroom Section 5-1 Probability Distributions I. Random Variables A variable x is a if the value that it assumes, corresponding to the of an experiment, is a or event. A random variable is if it potentially can

More information

Probability Models. Grab a copy of the notes on the table by the door

Probability Models. Grab a copy of the notes on the table by the door Grab a copy of the notes on the table by the door Bernoulli Trials Suppose a cereal manufacturer puts pictures of famous athletes in boxes of cereal, in the hope of increasing sales. The manufacturer announces

More information

Lesson 97 - Binomial Distributions IBHL2 - SANTOWSKI

Lesson 97 - Binomial Distributions IBHL2 - SANTOWSKI Lesson 97 - Binomial Distributions IBHL2 - SANTOWSKI Opening Exercise: Example #: (a) Use a tree diagram to answer the following: You throwing a bent coin 3 times where P(H) = / (b) THUS, find the probability

More information

Opening Exercise: Lesson 91 - Binomial Distributions IBHL2 - SANTOWSKI

Opening Exercise: Lesson 91 - Binomial Distributions IBHL2 - SANTOWSKI 08-0- Lesson 9 - Binomial Distributions IBHL - SANTOWSKI Opening Exercise: Example #: (a) Use a tree diagram to answer the following: You throwing a bent coin times where P(H) = / (b) THUS, find the probability

More information

Chapter 4 Discrete Random variables

Chapter 4 Discrete Random variables Chapter 4 Discrete Random variables A is a variable that assumes numerical values associated with the random outcomes of an experiment, where only one numerical value is assigned to each sample point.

More information

STOR Lecture 7. Random Variables - I

STOR Lecture 7. Random Variables - I STOR 435.001 Lecture 7 Random Variables - I Shankar Bhamidi UNC Chapel Hill 1 / 31 Example 1a: Suppose that our experiment consists of tossing 3 fair coins. Let Y denote the number of heads that appear.

More information

Midterm Exam III Review

Midterm Exam III Review Midterm Exam III Review Dr. Joseph Brennan Math 148, BU Dr. Joseph Brennan (Math 148, BU) Midterm Exam III Review 1 / 25 Permutations and Combinations ORDER In order to count the number of possible ways

More information

Section Distributions of Random Variables

Section Distributions of Random Variables Section 8.1 - Distributions of Random Variables Definition: A random variable is a rule that assigns a number to each outcome of an experiment. Example 1: Suppose we toss a coin three times. Then we could

More information

MLLunsford 1. Activity: Central Limit Theorem Theory and Computations

MLLunsford 1. Activity: Central Limit Theorem Theory and Computations MLLunsford 1 Activity: Central Limit Theorem Theory and Computations Concepts: The Central Limit Theorem; computations using the Central Limit Theorem. Prerequisites: The student should be familiar with

More information

Honors Statistics. Aug 23-8:26 PM. 1. Collect folders and materials. 2. Continue Binomial Probability. 3. Review OTL C6#11 homework

Honors Statistics. Aug 23-8:26 PM. 1. Collect folders and materials. 2. Continue Binomial Probability. 3. Review OTL C6#11 homework Honors Statistics Aug 23-8:26 PM 1. Collect folders and materials 2. Continue Binomial Probability 3. Review OTL C6#11 homework 4. Binomial mean and standard deviation 5. Past Homework discussion 6. Return

More information

3. The n observations are independent. Knowing the result of one observation tells you nothing about the other observations.

3. The n observations are independent. Knowing the result of one observation tells you nothing about the other observations. Binomial and Geometric Distributions - Terms and Formulas Binomial Experiments - experiments having all four conditions: 1. Each observation falls into one of two categories we call them success or failure.

More information

Mean of a Discrete Random variable. Suppose that X is a discrete random variable whose distribution is : :

Mean of a Discrete Random variable. Suppose that X is a discrete random variable whose distribution is : : Dr. Kim s Note (December 17 th ) The values taken on by the random variable X are random, but the values follow the pattern given in the random variable table. What is a typical value of a random variable

More information

Discrete Random Variables

Discrete Random Variables Discrete Random Variables In this chapter, we introduce a new concept that of a random variable or RV. A random variable is a model to help us describe the state of the world around us. Roughly, a RV can

More information