ST 371 (V): Families of Discrete Distributions

Size: px
Start display at page:

Download "ST 371 (V): Families of Discrete Distributions"

Transcription

1 ST 371 (V): Families of Discrete Distributions Certain experiments and associated random variables can be grouped into families, where all random variables in the family share a certain structure and a particular random variable in the family is described by one or more parameters. For discrete random variables, we will be looking at the following families: (1) Binomial (special case: Bernoulli); (2) Poisson; (3) Geometric; (4) Negative Binomial; (5) Hypergeometric. 1 Bernoulli/Binomial Probability Distribution Bernoulli Random Variable: Suppose that a trial (experiment) whose outcome can be classified as either a success or a failure is performed. Let the random variable X equal 1 when the outcome is a success and X equal 0 when the outcome is a failure. Then the pmf of X is p(0) = P {X = 0} = 1 p p(1) = P {X = 1} = p, where p is the probability that the trial is a success. A random variable X that has the above pmf for 0 < p < 1 is said to be Bernoulli (p) random variable. p is the parameter of the distribution. Binomial Random Variables: Suppose that n independent trials are performed, each of which results in a success with probability p and a failure with probability 1 p. If X represents the number of successes that occur in n trials, then X is said to be a binomial random variable with parameters (n, p). Thus, a Bernoulli random variable is just a binomial random variable with parameters (1, p). The pmf of a binomial random variable having parameters is given by ( ) n (1.1) p(i) = p i (1 p) n i, i = 0, 1,, n. i 1

2 The validity of (1.1) is verified by first noting that the probability of any particular sequence of n outcomes containing i successes and n i failures is, by the assumed independence of trials, p i (1 p) n i. Equation (1.1) follows because there are C i,n different sequences of the n outcomes leading to i successes and n i failures (we are choosing combinations of i slots to put the successes among n possible slots). Examples of binomial random variables: Example 1 Samuel Pepys was a great diarist of the English language and a friend of Isaac Newton s. Pepys was a gambler and wrote to Newton to ask which of three events is the most likely (a) at least one six comes up when six fair dice are rolled; (b) at least two sixes come up when 12 dice are rolled; (c) at least three sixes come up when 18 dice are rolled. What is the answer? Note that the number of rolls that are sixes in n independent tosses of a fair die is Binomial(n, 1/6). 2

3 Example 2 Each day the price of a new computer stock moves up one point or down one point with probabilities 0.75 and 0.25 respectively. What is the probability that after six days the stock will have returned to its original quotation? Assume that the daily price fluctuations are independent events. Note that the number of times that the stock moves up is Binomial(6, 0.75). Example 3 On her way to work, a commuter encounters four traffic signals. The distance between each of the four is sufficiently great that the probability of getting a green light at any intersection is independent of what happened at any prior intersection. If each light is green for 40 seconds of every minute, what is the probability that the driver has to stop at least three times? Note that the number of times that the driven has to stop is Binomial (4, 1/3). 3

4 Properties of Binomial Variable: If X Binomial(n, p), then E(X) = np, Var(X) = np(1 p), and σ x = np(1 p) (the proof is not required). Example 4 On a multiple choice test that has 100 questions with five possible answers for each question, we would expect to get 20 questions right if we were just guessing: E(X) = np = 100(1/5) = 20. The standard deviation of the number of questions we would get right is SD(X) = V ar(x) = np(1 p) = 100(1/5)(4/5) = 4. Binomial Random Variables in R: The command rbinom(m,size,prob) simulates m binomial (n=size,p=prob) random variables, e.g., > rbinom(2,10,.5) [1] 6 4 simulates the number of heads in 10 fair coin tosses two times. The command dbinom(x,size,prob) calculates the probability that a binomial(n=size,p=prob) random variable equals x, e.g., > dbinom(4,10,.5) [1] is the probability of getting 4 heads in 10 fair coin tosses. The command pbinom(q,size,prob) calculates the probability that a binomial(n=size,p=prob) random variable is less than or equal to q, e..g, > pbinom(4,10,.5) [1] is the probability of getting 4 or less heads in 10 fair coin tosses. 4

5 2 Poisson Probability Distribution 2.1 Poisson Random Variable A random variable X taking on one of the values 0, 1, 2,... is said to be a Poisson random variable with parameter λ if for some λ > 0, p(i) = P {X = i} = e λλi i!, for i = 0, 1, 2,.... This is a pmf because p(i) = e λ i=0 = e λ e λ = 1. Applications of Poisson random variables: The Poisson family of random variables provides a good model for the number of successes in an experiment consisting of a large number of independent trials with a small probability of success for each trial (since the number of successes is a binomial random variable with n large and p small) Examples of random phenomenon that are accurately modeled as Poisson random variables include: The number of misprints on a page (or a group of pages) of a book The number of people in a community living to 100 years of age The number of wrong telephone numbers that are dialed in a day The number of people arrive at a bus stop within an hour Example 5 Let X be the number of drivers who travel between a particular origin and destination during a given time period. Suppose X has a Poisson distribution with parameter λ = 20. What is the probability that the number of drivers will 5 i=0 λ i i!

6 be at most 10? exceed 20? be between 10 and 20 inclusive? 2.2 The Poisson Distribution as a Limit Poisson random variables provide an approximation for a binomial random variable when n is large and p is small enough so that np = λis of moderate size. Let X be a binomial random variable with parameters (n, p) and let λ = np. Then P (X = i) = = = n! (n i)!i! pi (1 p) n i ( ) i ( n! λ 1 λ ) n i (n i)!i! n n n(n 1) (n i + 1) λ i (1 λ/n) n n i i! (1 λ/n) i For n large, λ moderate and i considerably smaller than n we have ( 1 λ ) n ( e λ n(n 1) (n i + 1), 1, 1 λ i 1 n n n) i 6

7 The following tables gives an idea of the accuracy of the Poisson approximation to the binomial. For n=100, p=1/100, the Poisson approximation is remarkably good. Binomial and Poisson probabilities for n=5, p=1/5 and np=1 x B(5, 0.2) Poi(1) Binomial and Poisson probabilities for n=100, p=.01 and np=1 x B(100, 0.01) Poi(1)

8 Example 6 A chromosome mutation believed to be linked with colorblindness is known to occur, on the average, once in every 10,000 births. If 20,000 babies are born this year in a certain city, what is the probability that at least one will develop color blindness? An advantage of the Poisson approximation to the binomial is that we do not need to know the precise number of trials and the precise value of the probability of success; it is enough to know what the product of these two values is. Example 7 Suppose that in a certain country commercial airplane crashes occur at the rate of 2.5 per year. Find the probability that four or more crashes will occur next year. 8

9 2.3 The Properties of Poisson Distribution Let X be a Poisson(λ) random variable, then E(X) = = λ ie λ λ i i=0 i=1 i! = λe λ = λe λ e λ = λ e λ λ i 1 (i 1)! i=0 λ j (by letting j = i 1) j! and E(X 2 ) = = λ i 2 e λ λ i i=0 i=1 i! ie λ λ i 1 (i 1)! = λe λ (j + 1)e λ λ j (by letting j = i 1) j! j=0 [ ] je λ λ j e λ λ j = λ + j! j! j=0 = λ(λ + 1), j=0 where the final equality follows since the first sum is the expected value of a Poisson random variable with parameter λ and the second is the sum of the probabilities of this random variable. Therefore, V ar(x) = E(X 2 ) (E(X)) 2 = λ. 9

10 R Commands for Poisson distribution: The command rpois(n,lambda) simulates n Poisson random variables with parameter lambda. The command dpois(x,lambda) computes the probability that a Poisson random variable with parameter lambda equals x. The command ppois(x,lambda) computes the probability that a Poisson random variable with parameter lambda is less than or equal to x. 2.4 The Poisson Process: Poisson random variables as the number of events occurring in a time period Another use of the Poisson probability distribution, besides approximating the binomial for large n, small p, is to model the number of events occurring in a certain period of time, e.g., the number of earthquakes occurring during some fixed time span the number of wars per year the number of electrons emitted from a radioactive source during a given period of time the number of freak accidents, such as falls in the shower, for a large population during a given period of time (used by insurance companies) number of vehicles that pass a marker on a roadway during a given period of time. Let X denote the number of events occurring in a certain period of time. Suppose for a positive constant λ, the following assumptions hold true: 1. The probability that exactly 1 event occurs in a given interval of length h is equal to λh+o(h), where o(h) stands for any function f(h) such that lim h 0 f(h)/h = 0 [for instance, f(h) = h 2 is o(h) whereas f(h) = h is not.] 10

11 2. The probability that 2 or more events occur in an interval of length h is equal to o(h). 3. For any integers n, j 1,, j n and any set of n nonoverlapping intervals, if we define E i to be the event that exactly j k of the events under consideration occur in the ith of these intervals, then events E 1,, E n are independent. Under Assumptions 1-3, the number of events occurring in any interval of length t is a Poisson random variable with parameter λt. Real life examples: 1. In the 432 years from 1500 to 1931, war broke out somewhere in the world of 299 times (by definition, a military action was a war if it either was legally declared, involved over 50,000 troops or resulted in significant boundary realignments.) The following table gives distribution of the number of years in which x wars broke out and the expected frequencies for a Poisson (λ = 0.69) random variable. # of Wars in a given year Observed frequency Expected frequency Total During World War II, London was heavily bombed by V-2 guided ballistic rockets. These rockets, luckily, were not particularly accurate at hitting targets. The number of direct hits in the southern section of London has been analyzed by splitting the area up into 576 sectors measuring one quarter of a square kilometer each. The average number of direct hits per sector was The fit of a Poisson distribution with to the observed frequencies is excellent: 11

12 Hits Actual Frequency Expected Frequency or more Example 8 Bacteria are distributed throughout a volume of liquid according to the three assumptions with an intensity of θ = 0.6 organisms per mm 3. A measuring device counts the number of bacteria in a 10 mm 3 volume of the liquid. What is the probability that more than two bacteria are in this measured volume? 12

13 Example 9 Suppose that earthquakes occur in the western portion of the United States in accordance with assumptions 1, 2 and 3 with and with 1 week as the unit of time (That is, earthquakes occur in accordance with the three assumptions at the rate of 2 per week). Find the probability that at least 3 earthquakes occur during the next 2 weeks. Find the probability distribution of the time, starting from now, until the next earthquake. 13

14 2.5 Poisson Distribution: put together Poisson distribution arises in two settings: (1) provides an approximation to the binomial distribution when n is large, p is small and λ = np is moderate. (2) models the number of events that occur in a time period t when (a) the probability of an event occurring in a given small time period is approximately proportional to λh. (b) the probability of two or more events occurring in a given small time period is much smaller than λh. (c) the number of events occurring in two non-overlapping time periods are independent. When (a), (b) and (c) are satisfied, the number of events occurring in a time period t has a Poisson (λt) distribution. The parameter λ is called the rate of the Poisson distribution; λ is the mean number of events that occur in a time period of length 1. The mean number of events that occur in a time period of length t is λt and the variance of the number of events is also λt. Sketch of proof for Poisson distribution under (a)-(c): For a large value of n, we can divide the time period t into n nonoverlapping intervals of length t/n. The number of events occurring in time period t is then approximately Binomial (n, λt/n). Using the Poisson approximation to the binomial, the number of events occurring in time period t is approximately Poisson (nλt/n) =Poisson (λt). Taking the limit as n yields the result. The Poisson distribution also applies to the number of events occurring in space. Instead of intervals of length t, we have domains of area or volume t. Assumptions (a)-(c) become: (a ) the probability of an event occurring in a given small region of area or volume h is approximately proportional to λh. (b ) the probability of two or more events occurring in a given small region of area or volume is much smaller than λh. 14

15 (c ) the number of events occurring in two non-overlapping regions are independent. The parameter λ for a Poisson distribution for the number of events occurring in space is called the intensity. 3 Other Discrete Probability Distributions 3.1 Geometric Distribution Suppose that independent trials, each having a probability p, 0 < p < 1, of being a success, are performed until a success occurs. Let X be the random variable that denotes the number of trials required. The probability mass function of X is (3.2) P (X = n) = (1 p) n 1 p, n = 1, 2, The pmf follows because in order for X to equal n, it is necessary and sufficient that the first n-1 trials are failures and the nth trial is a success. A random variable that has the pmf (3.2) is called a geometric random variable with parameter p. The expected value and variance of a geometric (p) random variable are E(X) = 1 p, V ar(x) = 1 p p 2 Example 10 A fair die is tossed. What is the probability that the first six occurs on the fourth roll? What is the expected number of tosses needed to toss the first six? 15

16 3.2 Negative Binomial Distribution Suppose that independent trials, each having a probability p, 0 < p < 1, of being a success, are performed until r successes occurs. Let X be the random variable that denotes the number of trials required. The probability mass function of X is (3.3) P {X = n} = ( n 1 r 1 ) p r (1 p) n r n = r, r + 1,... A random variable whose pmf is given by (3.3) is called a negative binomial random variable with parameters (r, p). Note that the geometric random variable is a negative binomial random variable with parameters (1, p). The expected value and variance of a negative binomial random variable are E(X) = r r(1 p), V ar(x) = p p 2 Example 11 Suppose that an underground military installation is fortified to the extent that it can withstand up to four direct hits from air-to-surface missiles and still function. Enemy aircraft can score direct hits with these particular missiles with probability 0.7. Assume all firings are independent. What is the probability that a plane will require fewer than 8 shots to destroy the installation? What is the expected number of shots required to destroy the installation? 16

17 3.3 Hypergeometric Distribution Suppose that a sample of size n is to be chosen randomly (without replacement) from an urn containing N balls, of which m are white and N m are black. If we let X be the random variable that denotes the number of white balls selected, then (3.4) P (X = i) = ( m i ) ( ) N m n i ( ), i = 0, 1,..., n N n A random variable X whose pmf is given by (3.4) is said to be a hypergeometric random variable with parameters (n, N, m). The expected value and variance of a hypergeometric random variable with parameters (n, N, m) are E(X) = nm N, V ar(x) = np(1 p) ( 1 n 1 N 1 Example 12 A Scrabble set consists of 54 consonants and 44 vowels. What is the probability that your initial draw (of seven letters) will be all consonants? six consonants and one vowel? five consonants and two vowels? ). 17

Discrete Distributions

Discrete Distributions A simplest example of random experiment is a coin-tossing, formally called Bernoulli trial. It happens to be the case that many useful distributions are built upon this simplest form of experiment, whose

More information

Lecture 12. Poisson random variables

Lecture 12. Poisson random variables 18.440: Lecture 12 Poisson random variables Scott Sheffield MIT 1 Outline Poisson random variable definition Poisson random variable properties Poisson random variable problems 2 Outline Poisson random

More information

a zoo of (discrete) random variables

a zoo of (discrete) random variables discrete uniform random variables A discrete random variable X equally liely to tae any (integer) value between integers a and b, inclusive, is uniform. Notation: X ~ Unif(a,b) a zoo of (discrete) random

More information

Bernoulli Trials, Binomial and Cumulative Distributions

Bernoulli Trials, Binomial and Cumulative Distributions Bernoulli Trials, Binomial and Cumulative Distributions Sec 4.4-4.6 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 9-3339 Cathy Poliak,

More information

Binomial and Poisson Probability Distributions

Binomial and Poisson Probability Distributions Binomial and Poisson Probability Distributions Esra Akdeniz March 3, 2016 Bernoulli Random Variable Any random variable whose only possible values are 0 or 1 is called a Bernoulli random variable. What

More information

Topic 9 Examples of Mass Functions and Densities

Topic 9 Examples of Mass Functions and Densities Topic 9 Examples of Mass Functions and Densities Discrete Random Variables 1 / 12 Outline Bernoulli Binomial Negative Binomial Poisson Hypergeometric 2 / 12 Introduction Write f X (x θ) = P θ {X = x} for

More information

STOR Lecture 8. Random Variables - II

STOR Lecture 8. Random Variables - II STOR 435.001 Lecture 8 Random Variables - II Jan Hannig UNC Chapel Hill 1 / 25 Binomial Random variables Main properties Arise in describing the number of successes in n independent trials where each trial

More information

Lecture 13. Poisson Distribution. Text: A Course in Probability by Weiss 5.5. STAT 225 Introduction to Probability Models February 16, 2014

Lecture 13. Poisson Distribution. Text: A Course in Probability by Weiss 5.5. STAT 225 Introduction to Probability Models February 16, 2014 Lecture 13 Text: A Course in Probability by Weiss 5.5 STAT 225 Introduction to Probability Models February 16, 2014 Whitney Huang Purdue University 13.1 Agenda 1 2 3 13.2 Review So far, we have seen discrete

More information

Math/Stat 352 Lecture 8

Math/Stat 352 Lecture 8 Math/Stat 352 Lecture 8 Sections 4.3 and 4.4 Commonly Used Distributions: Poisson, hypergeometric, geometric, and negative binomial. 1 The Poisson Distribution Poisson random variable counts the number

More information

BNAD 276 Lecture 5 Discrete Probability Distributions Exercises 1 11

BNAD 276 Lecture 5 Discrete Probability Distributions Exercises 1 11 1 / 15 BNAD 276 Lecture 5 Discrete Probability Distributions 1 11 Phuong Ho May 14, 2017 Exercise 1 Suppose we have the probability distribution for the random variable X as follows. X f (x) 20.20 25.15

More information

Week 6, 9/24/12-9/28/12, Notes: Bernoulli, Binomial, Hypergeometric, and Poisson Random Variables

Week 6, 9/24/12-9/28/12, Notes: Bernoulli, Binomial, Hypergeometric, and Poisson Random Variables Week 6, 9/24/12-9/28/12, Notes: Bernoulli, Binomial, Hypergeometric, and Poisson Random Variables 1 Monday 9/24/12 on Bernoulli and Binomial R.V.s We are now discussing discrete random variables that have

More information

Part 3: Parametric Models

Part 3: Parametric Models Part 3: Parametric Models Matthew Sperrin and Juhyun Park August 19, 2008 1 Introduction There are three main objectives to this section: 1. To introduce the concepts of probability and random variables.

More information

Chapter 3 Discrete Random Variables

Chapter 3 Discrete Random Variables MICHIGAN STATE UNIVERSITY STT 351 SECTION 2 FALL 2008 LECTURE NOTES Chapter 3 Discrete Random Variables Nao Mimoto Contents 1 Random Variables 2 2 Probability Distributions for Discrete Variables 3 3 Expected

More information

Chapter (4) Discrete Probability Distributions Examples

Chapter (4) Discrete Probability Distributions Examples Chapter (4) Discrete Probability Distributions Examples Example () Two balanced dice are rolled. Let X be the sum of the two dice. Obtain the probability distribution of X. Solution When the two balanced

More information

Suppose that you have three coins. Coin A is fair, coin B shows heads with probability 0.6 and coin C shows heads with probability 0.8.

Suppose that you have three coins. Coin A is fair, coin B shows heads with probability 0.6 and coin C shows heads with probability 0.8. Suppose that you have three coins. Coin A is fair, coin B shows heads with probability 0.6 and coin C shows heads with probability 0.8. Coin A is flipped until a head appears, then coin B is flipped until

More information

BINOMIAL DISTRIBUTION

BINOMIAL DISTRIBUTION BINOMIAL DISTRIBUTION The binomial distribution is a particular type of discrete pmf. It describes random variables which satisfy the following conditions: 1 You perform n identical experiments (called

More information

Random Variable. Discrete Random Variable. Continuous Random Variable. Discrete Random Variable. Discrete Probability Distribution

Random Variable. Discrete Random Variable. Continuous Random Variable. Discrete Random Variable. Discrete Probability Distribution Random Variable Theoretical Probability Distribution Random Variable Discrete Probability Distributions A variable that assumes a numerical description for the outcome of a random eperiment (by chance).

More information

Guidelines for Solving Probability Problems

Guidelines for Solving Probability Problems Guidelines for Solving Probability Problems CS 1538: Introduction to Simulation 1 Steps for Problem Solving Suggested steps for approaching a problem: 1. Identify the distribution What distribution does

More information

18.175: Lecture 13 Infinite divisibility and Lévy processes

18.175: Lecture 13 Infinite divisibility and Lévy processes 18.175 Lecture 13 18.175: Lecture 13 Infinite divisibility and Lévy processes Scott Sheffield MIT Outline Poisson random variable convergence Extend CLT idea to stable random variables Infinite divisibility

More information

Expectations. Definition Let X be a discrete rv with set of possible values D and pmf p(x). The expected value or mean value of X, denoted by E(X ) or

Expectations. Definition Let X be a discrete rv with set of possible values D and pmf p(x). The expected value or mean value of X, denoted by E(X ) or Expectations Expectations Definition Let X be a discrete rv with set of possible values D and pmf p(x). The expected value or mean value of X, denoted by E(X ) or µ X, is E(X ) = µ X = x D x p(x) Expectations

More information

Common Discrete Distributions

Common Discrete Distributions Common Discrete Distributions Statistics 104 Autumn 2004 Taken from Statistics 110 Lecture Notes Copyright c 2004 by Mark E. Irwin Common Discrete Distributions There are a wide range of popular discrete

More information

Things to remember when learning probability distributions:

Things to remember when learning probability distributions: SPECIAL DISTRIBUTIONS Some distributions are special because they are useful They include: Poisson, exponential, Normal (Gaussian), Gamma, geometric, negative binomial, Binomial and hypergeometric distributions

More information

Some Special Discrete Distributions

Some Special Discrete Distributions Mathematics Department De La Salle University Manila February 6, 2017 Some Discrete Distributions Often, the observations generated by different statistical experiments have the same general type of behaviour.

More information

18440: Probability and Random variables Quiz 1 Friday, October 17th, 2014

18440: Probability and Random variables Quiz 1 Friday, October 17th, 2014 18440: Probability and Random variables Quiz 1 Friday, October 17th, 014 You will have 55 minutes to complete this test. Each of the problems is worth 5 % of your exam grade. No calculators, notes, or

More information

Notes on Continuous Random Variables

Notes on Continuous Random Variables Notes on Continuous Random Variables Continuous random variables are random quantities that are measured on a continuous scale. They can usually take on any value over some interval, which distinguishes

More information

Bernoulli Trials and Binomial Distribution

Bernoulli Trials and Binomial Distribution Bernoulli Trials and Binomial Distribution Sec 4.4-4.5 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 10-3339 Cathy Poliak, Ph.D. cathy@math.uh.edu

More information

Class 26: review for final exam 18.05, Spring 2014

Class 26: review for final exam 18.05, Spring 2014 Probability Class 26: review for final eam 8.05, Spring 204 Counting Sets Inclusion-eclusion principle Rule of product (multiplication rule) Permutation and combinations Basics Outcome, sample space, event

More information

Relationship between probability set function and random variable - 2 -

Relationship between probability set function and random variable - 2 - 2.0 Random Variables A rat is selected at random from a cage and its sex is determined. The set of possible outcomes is female and male. Thus outcome space is S = {female, male} = {F, M}. If we let X be

More information

Chapter 2: Discrete Distributions. 2.1 Random Variables of the Discrete Type

Chapter 2: Discrete Distributions. 2.1 Random Variables of the Discrete Type Chapter 2: Discrete Distributions 2.1 Random Variables of the Discrete Type 2.2 Mathematical Expectation 2.3 Special Mathematical Expectations 2.4 Binomial Distribution 2.5 Negative Binomial Distribution

More information

Random Variables Example:

Random Variables Example: Random Variables Example: We roll a fair die 6 times. Suppose we are interested in the number of 5 s in the 6 rolls. Let X = number of 5 s. Then X could be 0, 1, 2, 3, 4, 5, 6. X = 0 corresponds to the

More information

Discrete Random Variable Practice

Discrete Random Variable Practice IB Math High Level Year Discrete Probability Distributions - MarkScheme Discrete Random Variable Practice. A biased die with four faces is used in a game. A player pays 0 counters to roll the die. The

More information

DEFINITION: IF AN OUTCOME OF A RANDOM EXPERIMENT IS CONVERTED TO A SINGLE (RANDOM) NUMBER (E.G. THE TOTAL

DEFINITION: IF AN OUTCOME OF A RANDOM EXPERIMENT IS CONVERTED TO A SINGLE (RANDOM) NUMBER (E.G. THE TOTAL CHAPTER 5: RANDOM VARIABLES, BINOMIAL AND POISSON DISTRIBUTIONS DEFINITION: IF AN OUTCOME OF A RANDOM EXPERIMENT IS CONVERTED TO A SINGLE (RANDOM) NUMBER (E.G. THE TOTAL NUMBER OF DOTS WHEN ROLLING TWO

More information

Chapters 3.2 Discrete distributions

Chapters 3.2 Discrete distributions Chapters 3.2 Discrete distributions In this section we study several discrete distributions and their properties. Here are a few, classified by their support S X. There are of course many, many more. For

More information

Random Models. Tusheng Zhang. February 14, 2013

Random Models. Tusheng Zhang. February 14, 2013 Random Models Tusheng Zhang February 14, 013 1 Introduction In this module, we will introduce some random models which have many real life applications. The course consists of four parts. 1. A brief review

More information

Topic 3: The Expectation of a Random Variable

Topic 3: The Expectation of a Random Variable Topic 3: The Expectation of a Random Variable Course 003, 2017 Page 0 Expectation of a discrete random variable Definition (Expectation of a discrete r.v.): The expected value (also called the expectation

More information

STAT 414: Introduction to Probability Theory

STAT 414: Introduction to Probability Theory STAT 414: Introduction to Probability Theory Spring 2016; Homework Assignments Latest updated on April 29, 2016 HW1 (Due on Jan. 21) Chapter 1 Problems 1, 8, 9, 10, 11, 18, 19, 26, 28, 30 Theoretical Exercises

More information

ELEG 3143 Probability & Stochastic Process Ch. 2 Discrete Random Variables

ELEG 3143 Probability & Stochastic Process Ch. 2 Discrete Random Variables Department of Electrical Engineering University of Arkansas ELEG 3143 Probability & Stochastic Process Ch. 2 Discrete Random Variables Dr. Jingxian Wu wuj@uark.edu OUTLINE 2 Random Variable Discrete Random

More information

DISCRETE VARIABLE PROBLEMS ONLY

DISCRETE VARIABLE PROBLEMS ONLY DISCRETE VARIABLE PROBLEMS ONLY. A biased die with four faces is used in a game. A player pays 0 counters to roll the die. The table below shows the possible scores on the die, the probability of each

More information

Notes for Math 324, Part 17

Notes for Math 324, Part 17 126 Notes for Math 324, Part 17 Chapter 17 Common discrete distributions 17.1 Binomial Consider an experiment consisting by a series of trials. The only possible outcomes of the trials are success and

More information

IEOR 3106: Introduction to Operations Research: Stochastic Models. Professor Whitt. SOLUTIONS to Homework Assignment 1

IEOR 3106: Introduction to Operations Research: Stochastic Models. Professor Whitt. SOLUTIONS to Homework Assignment 1 IEOR 3106: Introduction to Operations Research: Stochastic Models Professor Whitt SOLUTIONS to Homework Assignment 1 Probability Review: Read Chapters 1 and 2 in the textbook, Introduction to Probability

More information

Discrete Distributions

Discrete Distributions Discrete Distributions STA 281 Fall 2011 1 Introduction Previously we defined a random variable to be an experiment with numerical outcomes. Often different random variables are related in that they have

More information

18.175: Lecture 17 Poisson random variables

18.175: Lecture 17 Poisson random variables 18.175: Lecture 17 Poisson random variables Scott Sheffield MIT 1 Outline More on random walks and local CLT Poisson random variable convergence Extend CLT idea to stable random variables 2 Outline More

More information

REPEATED TRIALS. p(e 1 ) p(e 2 )... p(e k )

REPEATED TRIALS. p(e 1 ) p(e 2 )... p(e k ) REPEATED TRIALS We first note a basic fact about probability and counting. Suppose E 1 and E 2 are independent events. For example, you could think of E 1 as the event of tossing two dice and getting a

More information

p. 4-1 Random Variables

p. 4-1 Random Variables Random Variables A Motivating Example Experiment: Sample k students without replacement from the population of all n students (labeled as 1, 2,, n, respectively) in our class. = {all combinations} = {{i

More information

Binomial random variable

Binomial random variable Binomial random variable Toss a coin with prob p of Heads n times X: # Heads in n tosses X is a Binomial random variable with parameter n,p. X is Bin(n, p) An X that counts the number of successes in many

More information

Discrete Distributions

Discrete Distributions Discrete Distributions Applications of the Binomial Distribution A manufacturing plant labels items as either defective or acceptable A firm bidding for contracts will either get a contract or not A marketing

More information

MATH 250 / SPRING 2011 SAMPLE QUESTIONS / SET 3

MATH 250 / SPRING 2011 SAMPLE QUESTIONS / SET 3 MATH 250 / SPRING 2011 SAMPLE QUESTIONS / SET 3 1. A four engine plane can fly if at least two engines work. a) If the engines operate independently and each malfunctions with probability q, what is the

More information

Conditional Probability

Conditional Probability Conditional Probability Idea have performed a chance experiment but don t know the outcome (ω), but have some partial information (event A) about ω. Question: given this partial information what s the

More information

Lecture 4: Random Variables and Distributions

Lecture 4: Random Variables and Distributions Lecture 4: Random Variables and Distributions Goals Random Variables Overview of discrete and continuous distributions important in genetics/genomics Working with distributions in R Random Variables A

More information

1 Basic continuous random variable problems

1 Basic continuous random variable problems Name M362K Final Here are problems concerning material from Chapters 5 and 6. To review the other chapters, look over previous practice sheets for the two exams, previous quizzes, previous homeworks and

More information

STAT 418: Probability and Stochastic Processes

STAT 418: Probability and Stochastic Processes STAT 418: Probability and Stochastic Processes Spring 2016; Homework Assignments Latest updated on April 29, 2016 HW1 (Due on Jan. 21) Chapter 1 Problems 1, 8, 9, 10, 11, 18, 19, 26, 28, 30 Theoretical

More information

Mathematical Statistics 1 Math A 6330

Mathematical Statistics 1 Math A 6330 Mathematical Statistics 1 Math A 6330 Chapter 3 Common Families of Distributions Mohamed I. Riffi Department of Mathematics Islamic University of Gaza September 28, 2015 Outline 1 Subjects of Lecture 04

More information

Part 3: Parametric Models

Part 3: Parametric Models Part 3: Parametric Models Matthew Sperrin and Juhyun Park April 3, 2009 1 Introduction Is the coin fair or not? In part one of the course we introduced the idea of separating sampling variation from a

More information

Lecture 3. Discrete Random Variables

Lecture 3. Discrete Random Variables Math 408 - Mathematical Statistics Lecture 3. Discrete Random Variables January 23, 2013 Konstantin Zuev (USC) Math 408, Lecture 3 January 23, 2013 1 / 14 Agenda Random Variable: Motivation and Definition

More information

Discrete Random Variable

Discrete Random Variable Discrete Random Variable Outcome of a random experiment need not to be a number. We are generally interested in some measurement or numerical attribute of the outcome, rather than the outcome itself. n

More information

UNIVERSITY OF CALIFORNIA, BERKELEY

UNIVERSITY OF CALIFORNIA, BERKELEY UNIVERSITY OF CALIFORNIA, BERKELEY DEPARTMENT OF STATISTICS STAT 34: Concepts of Probability Spring 24 Instructor: Antar Bandyopadhyay Solution to the Midterm Examination. A point X, Y is randomly selected

More information

1 Basic continuous random variable problems

1 Basic continuous random variable problems Name M362K Final Here are problems concerning material from Chapters 5 and 6. To review the other chapters, look over previous practice sheets for the two exams, previous quizzes, previous homeworks and

More information

Random Variable And Probability Distribution. Is defined as a real valued function defined on the sample space S. We denote it as X, Y, Z,

Random Variable And Probability Distribution. Is defined as a real valued function defined on the sample space S. We denote it as X, Y, Z, Random Variable And Probability Distribution Introduction Random Variable ( r.v. ) Is defined as a real valued function defined on the sample space S. We denote it as X, Y, Z, T, and denote the assumed

More information

STAT509: Discrete Random Variable

STAT509: Discrete Random Variable University of South Carolina September 16, 2014 Motivation So far, we have already known how to calculate probabilities of events. Suppose we toss a fair coin three times, we know that the probability

More information

CS 1538: Introduction to Simulation Homework 1

CS 1538: Introduction to Simulation Homework 1 CS 1538: Introduction to Simulation Homework 1 1. A fair six-sided die is rolled three times. Let X be a random variable that represents the number of unique outcomes in the three tosses. For example,

More information

1. Summarize the sample categorical data by creating a frequency table and bar graph. Y Y N Y N N Y Y Y N Y N N N Y Y Y N Y Y

1. Summarize the sample categorical data by creating a frequency table and bar graph. Y Y N Y N N Y Y Y N Y N N N Y Y Y N Y Y Lesson 2 1. Summarize the sample categorical data by creating a frequency table and bar graph. Y Y N Y N N Y Y Y N Y N N N Y Y Y N Y Y 2. Explain sample quantitative data summary using CUSS. 3. Sketch

More information

Bernoulli Trials and Binomial Distribution

Bernoulli Trials and Binomial Distribution Bernoulli Trials and Binomial Distribution Sec 4.4-4.5 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 9-3339 Cathy Poliak, Ph.D. cathy@math.uh.edu

More information

Find the value of n in order for the player to get an expected return of 9 counters per roll.

Find the value of n in order for the player to get an expected return of 9 counters per roll. . A biased die with four faces is used in a game. A player pays 0 counters to roll the die. The table below shows the possible scores on the die, the probability of each score and the number of counters

More information

Statistics for Economists. Lectures 3 & 4

Statistics for Economists. Lectures 3 & 4 Statistics for Economists Lectures 3 & 4 Asrat Temesgen Stockholm University 1 CHAPTER 2- Discrete Distributions 2.1. Random variables of the Discrete Type Definition 2.1.1: Given a random experiment with

More information

Discrete Random Variables

Discrete Random Variables Chapter 5 Discrete Random Variables Suppose that an experiment and a sample space are given. A random variable is a real-valued function of the outcome of the experiment. In other words, the random variable

More information

Probability Method in Civil Engineering Prof. Dr. Rajib Maity Department of Civil Engineering Indian Institute of Technology, Kharagpur

Probability Method in Civil Engineering Prof. Dr. Rajib Maity Department of Civil Engineering Indian Institute of Technology, Kharagpur Probability Method in Civil Engineering Prof. Dr. Rajib Maity Department of Civil Engineering Indian Institute of Technology, Kharagpur Lecture No. # 34 Probability Models using Discrete Probability Distributions

More information

Twelfth Problem Assignment

Twelfth Problem Assignment EECS 401 Not Graded PROBLEM 1 Let X 1, X 2,... be a sequence of independent random variables that are uniformly distributed between 0 and 1. Consider a sequence defined by (a) Y n = max(x 1, X 2,..., X

More information

Senior Math Circles November 19, 2008 Probability II

Senior Math Circles November 19, 2008 Probability II University of Waterloo Faculty of Mathematics Centre for Education in Mathematics and Computing Senior Math Circles November 9, 2008 Probability II Probability Counting There are many situations where

More information

1. If X has density. cx 3 e x ), 0 x < 0, otherwise. Find the value of c that makes f a probability density. f(x) =

1. If X has density. cx 3 e x ), 0 x < 0, otherwise. Find the value of c that makes f a probability density. f(x) = 1. If X has density f(x) = { cx 3 e x ), 0 x < 0, otherwise. Find the value of c that makes f a probability density. 2. Let X have density f(x) = { xe x, 0 < x < 0, otherwise. (a) Find P (X > 2). (b) Find

More information

Lectures Random Variables

Lectures Random Variables Lectures 1 1 Random Variables Definition: A random variable (rv or RV) is a real valued function defined on the sample space. The term random variable is a misnomer, in view of the normal usage of function

More information

CMPSCI 240: Reasoning Under Uncertainty

CMPSCI 240: Reasoning Under Uncertainty CMPSCI 240: Reasoning Under Uncertainty Lecture 5 Prof. Hanna Wallach wallach@cs.umass.edu February 7, 2012 Reminders Pick up a copy of B&T Check the course website: http://www.cs.umass.edu/ ~wallach/courses/s12/cmpsci240/

More information

STT 315 Problem Set #3

STT 315 Problem Set #3 1. A student is asked to calculate the probability that x = 3.5 when x is chosen from a normal distribution with the following parameters: mean=3, sd=5. To calculate the answer, he uses this command: >

More information

2. Suppose (X, Y ) is a pair of random variables uniformly distributed over the triangle with vertices (0, 0), (2, 0), (2, 1).

2. Suppose (X, Y ) is a pair of random variables uniformly distributed over the triangle with vertices (0, 0), (2, 0), (2, 1). Name M362K Final Exam Instructions: Show all of your work. You do not have to simplify your answers. No calculators allowed. There is a table of formulae on the last page. 1. Suppose X 1,..., X 1 are independent

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 2 MATH00040 SEMESTER / Probability

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 2 MATH00040 SEMESTER / Probability ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 2 MATH00040 SEMESTER 2 2017/2018 DR. ANTHONY BROWN 5.1. Introduction to Probability. 5. Probability You are probably familiar with the elementary

More information

STA 4321/5325 Solution to Extra Homework 1 February 8, 2017

STA 4321/5325 Solution to Extra Homework 1 February 8, 2017 STA 431/535 Solution to Etra Homework 1 February 8, 017 1. Show that for any RV X, V (X 0. (You can assume X to be discrete, but this result holds in general. Hence or otherwise show that E(X E (X. Solution.

More information

Bernoulli and Binomial Distributions. Notes. Bernoulli Trials. Bernoulli/Binomial Random Variables Bernoulli and Binomial Distributions.

Bernoulli and Binomial Distributions. Notes. Bernoulli Trials. Bernoulli/Binomial Random Variables Bernoulli and Binomial Distributions. Lecture 11 Text: A Course in Probability by Weiss 5.3 STAT 225 Introduction to Probability Models February 16, 2014 Whitney Huang Purdue University 11.1 Agenda 1 2 11.2 Bernoulli trials Many problems in

More information

ECE 313: Conflict Final Exam Tuesday, May 13, 2014, 7:00 p.m. 10:00 p.m. Room 241 Everitt Lab

ECE 313: Conflict Final Exam Tuesday, May 13, 2014, 7:00 p.m. 10:00 p.m. Room 241 Everitt Lab University of Illinois Spring 1 ECE 313: Conflict Final Exam Tuesday, May 13, 1, 7: p.m. 1: p.m. Room 1 Everitt Lab 1. [18 points] Consider an experiment in which a fair coin is repeatedly tossed every

More information

Probability Theory and Simulation Methods. April 6th, Lecture 19: Special distributions

Probability Theory and Simulation Methods. April 6th, Lecture 19: Special distributions April 6th, 2018 Lecture 19: 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

Midterm Exam 1 Solution

Midterm Exam 1 Solution EECS 126 Probability and Random Processes University of California, Berkeley: Fall 2015 Kannan Ramchandran September 22, 2015 Midterm Exam 1 Solution Last name First name SID Name of student on your left:

More information

Random variables. DS GA 1002 Probability and Statistics for Data Science.

Random variables. DS GA 1002 Probability and Statistics for Data Science. Random variables DS GA 1002 Probability and Statistics for Data Science http://www.cims.nyu.edu/~cfgranda/pages/dsga1002_fall17 Carlos Fernandez-Granda Motivation Random variables model numerical quantities

More information

CSE 103 Homework 8: Solutions November 30, var(x) = np(1 p) = P r( X ) 0.95 P r( X ) 0.

CSE 103 Homework 8: Solutions November 30, var(x) = np(1 p) = P r( X ) 0.95 P r( X ) 0. () () a. X is a binomial distribution with n = 000, p = /6 b. The expected value, variance, and standard deviation of X is: E(X) = np = 000 = 000 6 var(x) = np( p) = 000 5 6 666 stdev(x) = np( p) = 000

More information

Discussion 03 Solutions

Discussion 03 Solutions STAT Discussion Solutions Spring 8. A new flavor of toothpaste has been developed. It was tested by a group of people. Nine of the group said they liked the new flavor, and the remaining indicated they

More information

Topic 3: The Expectation of a Random Variable

Topic 3: The Expectation of a Random Variable Topic 3: The Expectation of a Random Variable Course 003, 2016 Page 0 Expectation of a discrete random variable Definition: The expected value of a discrete random variable exists, and is defined by EX

More information

a zoo of (discrete) random variables

a zoo of (discrete) random variables a zoo of (discrete) random variables 42 uniform random variable Takes each possible value, say {1..n} with equal probability. Say random variable uniform on S Recall envelopes problem on homework... Randomization

More information

Stats Review Chapter 6. Mary Stangler Center for Academic Success Revised 8/16

Stats Review Chapter 6. Mary Stangler Center for Academic Success Revised 8/16 Stats Review Chapter Revised 8/1 Note: This review is composed of questions similar to those found in the chapter review and/or chapter test. This review is meant to highlight basic concepts from the course.

More information

II. The Binomial Distribution

II. The Binomial Distribution 88 CHAPTER 4 PROBABILITY DISTRIBUTIONS 進佳數學團隊 Dr. Herbert Lam 林康榮博士 HKDSE Mathematics M1 II. The Binomial Distribution 1. Bernoulli distribution A Bernoulli eperiment results in any one of two possible

More information

Introduction. Probability and distributions

Introduction. Probability and distributions Introduction. Probability and distributions Joe Felsenstein Genome 560, Spring 2011 Introduction. Probability and distributions p.1/18 Probabilities We will assume you know that Probabilities of mutually

More information

Problems and results for the ninth week Mathematics A3 for Civil Engineering students

Problems and results for the ninth week Mathematics A3 for Civil Engineering students Problems and results for the ninth week Mathematics A3 for Civil Engineering students. Production line I of a factor works 0% of time, while production line II works 70% of time, independentl of each other.

More information

Week 04 Discussion. a) What is the probability that of those selected for the in-depth interview 4 liked the new flavor and 1 did not?

Week 04 Discussion. a) What is the probability that of those selected for the in-depth interview 4 liked the new flavor and 1 did not? STAT Wee Discussion Fall 7. A new flavor of toothpaste has been developed. It was tested by a group of people. Nine of the group said they lied the new flavor, and the remaining 6 indicated they did not.

More information

Math 493 Final Exam December 01

Math 493 Final Exam December 01 Math 493 Final Exam December 01 NAME: ID NUMBER: Return your blue book to my office or the Math Department office by Noon on Tuesday 11 th. On all parts after the first show enough work in your exam booklet

More information

1. Discrete Distributions

1. Discrete Distributions Virtual Laboratories > 2. Distributions > 1 2 3 4 5 6 7 8 1. Discrete Distributions Basic Theory As usual, we start with a random experiment with probability measure P on an underlying sample space Ω.

More information

R Based Probability Distributions

R Based Probability Distributions General Comments R Based Probability Distributions When a parameter name is ollowed by an equal sign, the value given is the deault. Consider a random variable that has the range, a x b. The parameter,

More information

Quick review on Discrete Random Variables

Quick review on Discrete Random Variables STAT/MATH 395 A - PROBABILITY II UW Winter Quarter 2017 Néhémy Lim Quick review on Discrete Random Variables Notations. Z = {..., 2, 1, 0, 1, 2,...}, set of all integers; N = {0, 1, 2,...}, set of natural

More information

Applied Statistics I

Applied Statistics I Applied Statistics I (IMT224β/AMT224β) Department of Mathematics University of Ruhuna A.W.L. Pubudu Thilan Department of Mathematics University of Ruhuna Applied Statistics I(IMT224β/AMT224β) 1/158 Chapter

More information

Topic 3 - Discrete distributions

Topic 3 - Discrete distributions Topic 3 - Discrete distributions Basics of discrete distributions Mean and variance of a discrete distribution Binomial distribution Poisson distribution and process 1 A random variable is a function which

More information

37.3. The Poisson Distribution. Introduction. Prerequisites. Learning Outcomes

37.3. The Poisson Distribution. Introduction. Prerequisites. Learning Outcomes The Poisson Distribution 37.3 Introduction In this Section we introduce a probability model which can be used when the outcome of an experiment is a random variable taking on positive integer values and

More information

Chapter 1: Revie of Calculus and Probability

Chapter 1: Revie of Calculus and Probability Chapter 1: Revie of Calculus and Probability Refer to Text Book: Operations Research: Applications and Algorithms By Wayne L. Winston,Ch. 12 Operations Research: An Introduction By Hamdi Taha, Ch. 12 OR441-Dr.Khalid

More information

Geometric Distribution The characteristics of a geometric experiment are: 1. There are one or more Bernoulli trials with all failures except the last

Geometric Distribution The characteristics of a geometric experiment are: 1. There are one or more Bernoulli trials with all failures except the last Geometric Distribution The characteristics of a geometric experiment are: 1. There are one or more Bernoulli trials with all failures except the last one, which is a success. In other words, you keep repeating

More information

Discrete Distributions

Discrete Distributions Chapter 2 Discrete Distributions 2.1 Random Variables of the Discrete Type An outcome space S is difficult to study if the elements of S are not numbers. However, we can associate each element/outcome

More information