Normal distribution Approximating binomial distribution by normal 2.10 Central Limit Theorem

Size: px
Start display at page:

Download "Normal distribution Approximating binomial distribution by normal 2.10 Central Limit Theorem"

Transcription

1 1.1.2 Normal distribution Approimating binomial distribution by normal 2.1 Central Limit Theorem Prof. Tesler Math 283 Fall 216 Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

2 Normal distribution a.k.a. Bell curve and Gaussian distribution The normal distribution is a continuous distribution. Parameters: µ = mean (center) σ = standard deviation (width) ( ) PDF: f X () = 1 σ ep ( µ)2 for < <. 2π 2σ 2 Normal distribution N(2, 5): µ = 2, σ = Normal µ µ ± σ The normal distribution is symmetric about = µ, so median = mean = µ. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

3 Applications of normal distribution Applications Many natural quantities are modelled by it: e.g., a histogram of the heights or weights of everyone in a large population often follows a normal distribution. Many distributions such as binomial, Poisson,... are closely approimated by it when the parameters are large enough. Sums and averages of huge quantities of data are often modelled by it. Coverage in DNA sequencing Illumina GA II sequencing of E. coli at 6 coverage. Chitsaz et al. (211), Nature Biotechnology % of positions with coverage Empirical distribution of coverage Coverage Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

4 Cumulative distribution function It turns out that the integral for total probability does equal 1: ) 1 ( σ 2π ep ( µ)2 2σ 2 d = 1 However, it s a tricky integral; see a Calculus tetbook in the section on double integrals in polar coordinates. The cumulative distribution function is the integral F X () = P(X ) = ) 1 ( σ 2π ep (t µ)2 2σ 2 dt This integral cannot be done symbollically in terms of the usual functions (polynomials, eponentials, logs, trig functions, etc.). It can be done via numerical integration or Taylor series. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

5 Standard normal distribution Standard normal distribution N(, 1): µ =, σ = 1 CDF of standard normal distribution..2.4 Normal µ µ ± σ cdf..4.8 Normal µ µ ± σ z The standard normal distribution is the normal distribution for µ =, σ = 1. Use the variable name Z: PDF: φ(z) = f Z (z) = e z2 /2 2π for < z < CDF: Φ(z) = F Z (z) = P(Z z) = 1 z e t2 /2 dt 2π The integral can t be done in terms of ordinary functions, but it can be done using numerical methods. In the past, people used lookup tables. We ll use functions for it in Matlab and R. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38 z

6 Matlab and R commands For the standard normal: Φ(1.96).975 Φ 1 (.975) 1.96 Matlab: normcdf(1.96) norminv(.975) R: pnorm(1.96) qnorm(.975) We will see shortly how to convert between an arbitrary normal distribution (any µ, σ) and the standard normal distribution. The commands above allow additional arguments to specify µ and σ, e.g., normcdf(1.96,,1). R also can work with the right tail directly: pnorm(1.96, lower.tail = FALSE).975 qnorm(.975, lower.tail = FALSE) 1.96 Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

7 Standard normal distribution areas.4 Standard Normal Curve.3.2.1!5 a b 5 z The area between z = a and z = b is P(a Z b) = 1 2π b a e t2 /2 dt = Φ(b) Φ(a) P(1.51 Z 1.62) = Φ(1.62) Φ(1.51) = =.129 Matlab: normcdf(1.62) normcdf(1.51) R: pnorm(1.62) pnorm(1.51) Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

8 Standard normal distribution symmetries of areas.4 Area! on the right "#$ &'()*!*+,*-.(*/( "#! z!!2 2 z "!%!!! " %! Area right of z is P(Z > z) = 1 Φ(z). By symmetry, the area left of z and the area right of z are equal: Φ( z) = 1 Φ(z) Φ( 1.51) = 1 Φ(1.51) = =.655 Area between z = ±1.51 is Φ(1.51) Φ( 1.51) = 2Φ(1.51) Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

9 Central area Area between z = ±1 is 68.27%. Area between z = ±2 is 95.45%. Area between z = ±3 is 99.73%..4.2 Area! split half on each tail!z!/2 z!/2!2 z 2 Find the center part containing 95% of the area Put 2.5% of the area at the upper tail, 2.5% at the lower tail, and 95% in the middle. The value of z putting 2.5% at the top gives Φ(z) = 1.25 =.975. Notation: z.25 = The area between z = ±1.96 is about 95%. For 99% in the middle,.5% on each side, use z Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

10 Areas on normal curve for arbitrary µ, σ P(a X b) = b a ) 1 ( σ 2π ep ( µ)2 2σ 2 d Substitute z = µ σ (or = σz + µ) into the integral to turn it into the standard normal integral: ( a µ P X µ b µ ) ( a µ = P Z b µ ) σ σ σ σ σ ( ) ( ) b µ a µ = Φ Φ σ σ The z-score of is z = µ σ. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

11 Binomial distribution Compute P(43 X 51) when n = 6, p = 3/4 Binomial: n = 6, p = 3/4 k P(X = k) = ( ) 6 k (.75) k (.25) 6 k Total.7544 Mean µ = np = 6(3/4) = 45 Standard deviation σ= np(1 p) = 6(3/4)(1/4) = Mode (k with ma ) np + p = 6(3/4) + (3/4) = = 45 Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

12 Mode of a distribution The mode of random variable X is the value k at which the is maimum. Mode of binomial distribution when < p < 1 The mode is (n + 1)p. Eception: If (n + 1)p is an integer then (n + 1)p and (n + 1)p 1 are tied as the mode. The mode is within 1 of the mean np. When np is an integer, the mode equals the mean. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

13 Binomial and normal distributions Binomial Normal approimation to binomial k P(X = k).15 Binomial: n=6, p=3/4 Binomial P(43! X! 51) Normal: µ=45,"= Total P(X = k) shown as a rectangle: height P(X = k), etent k ± 1/2. The binomial distribution is only defined at the integers, and is very close to the normal distribution shown. We will approimate the probability P(43 X 51) we had above by the corresponding one for the normal distribution. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

14 Normal approimation to binomial, step 1 Compute corresponding parameters We want to approimate P(a X b) in a binomial distribution. We ll use n = 6, p = 3/4 and approimate P(43 X 51). Determine µ, σ: µ = np = 6(3/4) = 45 σ = np(1 p) = The normal distribution with those same values of µ, σ is a good approimation to the binomial distribution provided µ ± 3σ are both between and n. Check: µ 3σ 45 3(3.354) = µ + 3σ (3.354) = are both between and 6, so we may proceed. Note: Some applications are more strict and may require µ ± 5σ or more to be between and n. Since µ + 5σ , this would fail at that level of strictness. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

15 Normal approimation to binomial, step 2 Continuity correction Normal approimation to binomial Binomial: n=6, p=3/4 Binomial P(43! X! 51) Normal: µ=45,"=3.35 The binomial distribution is discrete (X = integers) but the normal distribution is continuous The sum P(X = 43) + + P(X = 51) has 9 terms, corresponding to the area of the 9 rectangles in the picture. The area under the normal distribution curve from 42.5 X 51.5 approimates the area of those rectangles. Change P(43 X 51) to P(42.5 X 51.5). Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

16 Normal approimation to binomial, steps Convert to z-scores 4. Use the normal distribution to approimately evaluate it For random variable X with mean µ and standard deviation σ, The z-score of a value is z = E(X) SD(X) The random variable Z is Z = X E(X) SD(X) Convert to z-scores: P(42.5 X 51.5) = P = µ σ. = X µ σ. ( X ) = P( Z ) Approimate this by the standard normal distribution cdf: Φ( ) Φ( ) This is close to the true answer (apart from rounding errors) P(43 X 51) =.7544 we got from the binomial distribution. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

17 Estimating fraction of successes instead of number of successes What is the value of p in the binomial distribution? Estimate it: flip a coin n times and divide the # heads by n. Let X = binomial distribution for n flips, probability p of heads. Let X = X/n be the fraction of flips that are heads. X is discrete, with possible values n, 1 n, 2 n,..., n n {(. n ) P(X = k n ) = P(X = k) = k p k (1 p) n k for k =, 1,..., n; otherwise. Mean E(X) = E(X/n) = E(X)/n = np/n = p. Variance Var(X) = Var ( ) X n = Var(X) n 2 Standard deviation SD(X) = p(1 p)/n. = np(1 p) n 2 = p(1 p) n. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

18 Normal approimation for fraction of successes n flips, probability p of heads, X=observed fraction of heads Mean E(X) = p Variance Var(X) = p(1 p)/n Standard deviation SD(X) = p(1 p)/n The Z transformation of X is Z = X E(X) SD(X) = X p p(1 p)/n and value X = has z-score z = p p(1 p)/n. For k heads in n flips, The z-score of X = k is z 1 = k np. np(1 p) The z-score of X = k/n is z 2 = (k/n) p p(1 p)/n. These are equal! Divide the numerator and denominator of z 1 by n to get z 2. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

19 Normal approimation for fraction of successes For n = 6 flips of a coin with p = 3 4, we ll estimate P ( 43 6 The eact answer equals P(43 X 51) X 51 6). Step 1: Determine mean and SD E(X) = p =.75 SD(X) = p(1 p)/n = (.75)(.25)/6 = Verify approimation is valid: Mean ± 3 SD between and 1 Mean 3 SD = Mean + 3 SD =.9177 Both are between and 1. Step 2: Continuity correction P ( ) ( X 6 = P Step 3: z-scores X Step 4: Evaluate approimate answer using normal distribution Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38 )

20 Normal approimation for fraction of successes P ( 43 6 ) ( 51 X 6 = P X = P(.7833 X.85833) (.7833 E(X) = P SD(X) ) X E(X) SD(X) = P ( Z = P( Z ) E(X) SD(X) ) ) = Φ( ) Φ(.74535) Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

21 Mean and SD of sums and averages of i.i.d. random variables Let X 1,..., X n be n i.i.d. (independent identically distributed) random variables, each with mean µ and standard deviation σ. Let S n = X X n be their sum and X n = (X X n )/n = S n /n be their average. Means: Sum: E(S n ) = E(X 1 ) + + E(X n ) = n E(X 1 ) = nµ Avg: E(X n ) = E(S n /n) = nµ/n = µ Variance: Sum: Var(S n ) = Var(X 1 ) + + Var(X n ) = n Var(X 1 ) = nσ 2 Avg: Var(X n ) = Var(S n )/n 2 = nσ 2 /n 2 = σ 2 /n Standard deviation: Sum: SD(S n ) = σ n Avg: SD(X n ) = σ/ n Terminology for different types of standard deviation The standard deviation (SD) of a trial (each X i ) is σ The standard error (SE) of the sum is σ n The standard error (SE) of the average is σ/ n Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

22 Z-scores of sums and averages For sum S n For average X n Mean: E(S n ) = nµ E(X n ) = µ Variance: Var(S n ) = nσ 2 Var(X n ) = σ 2 /n Standard Deviation: SD(S n ) = σ n SD(X n ) = σ/ n Z-scores: Z = S n E(S n ) SD(S n ) = S n nµ σ n Z = X n E(X n ) SD(X n ) = X n µ σ/ n Z-scores of sum and average are equal! Divide the numerator and denominator of Z of the sum by n to get Z of the average. Z sum = (S n nµ)/n (σ n)/n = X n µ σ/ n = Z avg Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

23 Theorem (Central Limit Theorem abbreviated CLT) For n i.i.d. random variables X 1,..., X n with sum S n = X X n and average X n = S n /n, and any real numbers a < b, P ( a S n nµ σ n ) b = P ( a X ) n µ σ/ n b Φ(b) Φ(a) if n is large enough. As n, the approimation becomes eact equality. 1.5 Binomial n=1,p=.75; µ=.75,!= Binomial n=6,p=.75; µ=45.,!= Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

24 Interpretation of Central Limit Theorem As n increases, the more and more closely resembles a normal distribution. However, the is defined as in-between the red points shown, if it s a discrete distribution. The cdfs are approimately equal everywhere on the continuum. Probabilities of intervals for sums or averages of enough i.i.d. variables can be approimately evaluated using the normal distribution. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

25 Repeated rolls of a die One roll: µ = 3.5, σ = 35/ Average of 1 roll of die; µ=3.5,!= Average of 2 rolls of die; µ=3.5,!= Average of 3 rolls of die; µ=3.5,!= Average of 1 rolls of die; µ=3.5,!=.17 Die average Normal dist. µ µ±! Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

26 Repeated rolls of a die Find n so that at least 95% of the time, the average of n rolls of a die is between 3 and 4. ( ) P(3 X 4) = P 3 µ σ/ X µ n σ/ 4 µ n σ/ n Plug in µ = 3.5 and σ = 35/12. ( P(3 X 4) = P 1/2 Z 35/(12n) ) 1/2 35/(12n) Recall the center 95% of the area on the standard normal curve is between z = ± / n (1.96) 2 35/ /(12n) (1/2) 2 n is an integer so n 45 Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

27 Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

28 Sawtooth distribution (made up as demo) One trial: µ = 4, σ 2.24 Average of 1 trial; µ=4.,!=2.24 Average of 2 trials; µ=4.,!= Average of 3 trials; µ=4.,!= Average of 1 trials; µ=4.,!= Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

29 Binomial distribution (n, p) A Bernoulli trial is to flip a coin once and count the number of heads, { 1 probability p; X 1 = probability 1 p. Mean E(X 1 ) = p, standard deviation SD(X 1 ) = p(1 p). The binomial distribution is the sum of n i.i.d. Bernoulli trials. Mean µ = np, standard deviation σ = np(1 p). The binomial distribution is approimated pretty well by the normal distribution when µ ± 3σ are between and n. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

30 Binomial distribution (n, p) One flip: µ = p =.75, σ = p(1 p) = Binomial n=1,p=.75; µ=.75,!= Binomial n=6,p=.75; µ=4.5,!= Binomial n=3,p=.75; µ=22.5,!= Binomial n=6,p=.75; µ=45.,!= Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

31 Poisson distribution (µ or µ = λ d) Mean: µ (same as the Poisson parameter) Standard deviation: σ = µ. It is approimated pretty well by the normal distribution when µ 5. The reason the Central Limit Theorem applies is that a Poisson distribution with parameter µ equals the sum of n i.i.d. Poissons with parameter µ/n. The Poisson distribution has infinite range =, 1, 2,... and the normal distribution has infinite range < < (reals). Both are truncated in the plots. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

32 Poisson distribution (µ) Poisson µ=1;!= Poisson µ=6;!= Poisson µ=3;!= Poisson µ=6;!= Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

33 Geometric and negative binomial distributions Geometric distribution (p) X is the number of flips { until the first heads, (1 p) 1 p if = 1, 2, 3,... ; p X () = otherwise. The plot doesn t resemble the normal distribution at all. Mean: µ = 1/p Negative binomial distribution (r, p) Standard deviation: σ = 1 p/p r = 1 is same as geometric distribution. r > 2: The has a bell -like shape, but is not close to the normal distribution unless r is very large. Mean: µ = r/p Standard deviation: σ = r(1 p)/p Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

34 Geometric and negative binomial distributions Heads with probability p =.1 Geometric p=.1; µ=1.,!= Neg. bin. r=6,p=.1; µ=6.,!= Neg. bin. r=3,p=.1; µ=3.,!= Neg. bin. r=6,p=.1; µ=6.,!= ! Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

35 Eponential and gamma distributions Eponential distribution (λ) The eponential distribution doesn t resemble the normal distribution at all. Mean: µ = 1/λ Standard deviation: σ = 1/λ Gamma distribution (r, λ) The gamma distribution for r = 1 is the eponential distribution. The gamma distribution for r > 1 does have a bell -like shape, but it is not close to the normal distribution until r is very large. There is a generalization to allow r to be real numbers, not just integers. Mean: µ = r/λ Standard deviation: σ = r/λ Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

36 Eponential and gamma distributions Rate λ =.1 Eponential!=.1; µ=1.,"= Gamma r=6,p=.1; µ=6.,!= Gamma r=3,p=.1; µ=3.,!= ! Gamma r=6,p=.1; µ=6.,!= ! Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

37 Geometric/Negative binomial vs. Eponential/Gamma p = λ gives same means for geometric and eponential. p = 1 e λ gives same eponential decay rate for both geometric and eponential distributions. 1 e λ λ when λ is small. This corespondence carries over to the gamma and negative binomial distributions. Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

38 Geometric/negative binomial vs. Eponential/gamma This is for p =.1 vs. λ =.1; a better fit for λ =.1 would be p = 1 e λ.95 Geometric p=.1; µ=1.,!=9.49 Eponential!=.1; µ=1.,"= Neg. bin. r=3,p=.1; µ=3.,!= Gamma r=3,p=.1; µ=3.,!= ! Prof. Tesler , 2.1 Normal distribution Math 283 / Fall / 38

4.3 Normal distribution

4.3 Normal distribution 43 Normal distribution Prof Tesler Math 186 Winter 216 Prof Tesler 43 Normal distribution Math 186 / Winter 216 1 / 4 Normal distribution aka Bell curve and Gaussian distribution The normal distribution

More information

Tutorial 11: Limit Theorems. Baoxiang Wang & Yihan Zhang bxwang, April 10, 2017

Tutorial 11: Limit Theorems. Baoxiang Wang & Yihan Zhang bxwang, April 10, 2017 Tutorial 11: Limit Theorems Baoxiang Wang & Yihan Zhang bxwang, yhzhang@cse.cuhk.edu.hk April 10, 2017 1 Outline The Central Limit Theorem (CLT) Normal Approximation Based on CLT De Moivre-Laplace Approximation

More information

Lecture 23. STAT 225 Introduction to Probability Models April 4, Whitney Huang Purdue University. Normal approximation to Binomial

Lecture 23. STAT 225 Introduction to Probability Models April 4, Whitney Huang Purdue University. Normal approximation to Binomial Lecture 23 STAT 225 Introduction to Probability Models April 4, 2014 approximation Whitney Huang Purdue University 23.1 Agenda 1 approximation 2 approximation 23.2 Characteristics of the random variable:

More information

Central Limit Theorem, Joint Distributions Spring 2018

Central Limit Theorem, Joint Distributions Spring 2018 Central Limit Theorem, Joint Distributions 18.5 Spring 218.5.4.3.2.1-4 -3-2 -1 1 2 3 4 Exam next Wednesday Exam 1 on Wednesday March 7, regular room and time. Designed for 1 hour. You will have the full

More information

Normal Distribution. Notes. Normal Distribution. Standard Normal. Sums of Normal Random Variables. Normal. approximation of Binomial.

Normal Distribution. Notes. Normal Distribution. Standard Normal. Sums of Normal Random Variables. Normal. approximation of Binomial. Lecture 21,22, 23 Text: A Course in Probability by Weiss 8.5 STAT 225 Introduction to Probability Models March 31, 2014 Standard Sums of Whitney Huang Purdue University 21,22, 23.1 Agenda 1 2 Standard

More information

Statistics for Business and Economics

Statistics for Business and Economics Statistics for Business and Economics Chapter 5 Continuous Random Variables and Probability Distributions Ch. 5-1 Probability Distributions Probability Distributions Ch. 4 Discrete Continuous Ch. 5 Probability

More information

Estimating parameters 5.3 Confidence Intervals 5.4 Sample Variance

Estimating parameters 5.3 Confidence Intervals 5.4 Sample Variance Estimating parameters 5.3 Confidence Intervals 5.4 Sample Variance Prof. Tesler Math 186 Winter 2017 Prof. Tesler Ch. 5: Confidence Intervals, Sample Variance Math 186 / Winter 2017 1 / 29 Estimating parameters

More information

The normal distribution is a theoretical model derived mathematically and not empirically.

The normal distribution is a theoretical model derived mathematically and not empirically. Sociology 541 The Normal Distribution Probability and An Introduction to Inferential Statistics Normal Approximation The normal distribution is a theoretical model derived mathematically and not empirically.

More information

ME3620. Theory of Engineering Experimentation. Spring Chapter III. Random Variables and Probability Distributions.

ME3620. Theory of Engineering Experimentation. Spring Chapter III. Random Variables and Probability Distributions. ME3620 Theory of Engineering Experimentation Chapter III. Random Variables and Probability Distributions Chapter III 1 3.2 Random Variables In an experiment, a measurement is usually denoted by a variable

More information

Elementary Statistics Lecture 5

Elementary Statistics Lecture 5 Elementary Statistics Lecture 5 Sampling Distributions Chong Ma Department of Statistics University of South Carolina Chong Ma (Statistics, USC) STAT 201 Elementary Statistics 1 / 24 Outline 1 Introduction

More information

ECO220Y Continuous Probability Distributions: Normal Readings: Chapter 9, section 9.10

ECO220Y Continuous Probability Distributions: Normal Readings: Chapter 9, section 9.10 ECO220Y Continuous Probability Distributions: Normal Readings: Chapter 9, section 9.10 Fall 2011 Lecture 8 Part 2 (Fall 2011) Probability Distributions Lecture 8 Part 2 1 / 23 Normal Density Function f

More information

Probability. An intro for calculus students P= Figure 1: A normal integral

Probability. An intro for calculus students P= Figure 1: A normal integral Probability An intro for calculus students.8.6.4.2 P=.87 2 3 4 Figure : A normal integral Suppose we flip a coin 2 times; what is the probability that we get more than 2 heads? Suppose we roll a six-sided

More information

Homework: Due Wed, Nov 3 rd Chapter 8, # 48a, 55c and 56 (count as 1), 67a

Homework: Due Wed, Nov 3 rd Chapter 8, # 48a, 55c and 56 (count as 1), 67a Homework: Due Wed, Nov 3 rd Chapter 8, # 48a, 55c and 56 (count as 1), 67a Announcements: There are some office hour changes for Nov 5, 8, 9 on website Week 5 quiz begins after class today and ends at

More information

Homework: Due Wed, Feb 20 th. Chapter 8, # 60a + 62a (count together as 1), 74, 82

Homework: Due Wed, Feb 20 th. Chapter 8, # 60a + 62a (count together as 1), 74, 82 Announcements: Week 5 quiz begins at 4pm today and ends at 3pm on Wed If you take more than 20 minutes to complete your quiz, you will only receive partial credit. (It doesn t cut you off.) Today: Sections

More information

4 Random Variables and Distributions

4 Random Variables and Distributions 4 Random Variables and Distributions Random variables A random variable assigns each outcome in a sample space. e.g. called a realization of that variable to Note: We ll usually denote a random variable

More information

Chapter 7 1. Random Variables

Chapter 7 1. Random Variables Chapter 7 1 Random Variables random variable numerical variable whose value depends on the outcome of a chance experiment - discrete if its possible values are isolated points on a number line - continuous

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

The Bernoulli distribution

The Bernoulli distribution This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License. Your use of this material constitutes acceptance of that license and the conditions of use of materials on this

More information

Part V - Chance Variability

Part V - Chance Variability Part V - Chance Variability Dr. Joseph Brennan Math 148, BU Dr. Joseph Brennan (Math 148, BU) Part V - Chance Variability 1 / 78 Law of Averages In Chapter 13 we discussed the Kerrich coin-tossing experiment.

More information

Homework Assignments

Homework Assignments Homework Assignments Week 1 (p. 57) #4.1, 4., 4.3 Week (pp 58 6) #4.5, 4.6, 4.8(a), 4.13, 4.0, 4.6(b), 4.8, 4.31, 4.34 Week 3 (pp 15 19) #1.9, 1.1, 1.13, 1.15, 1.18 (pp 9 31) #.,.6,.9 Week 4 (pp 36 37)

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

Topic 6 - Continuous Distributions I. Discrete RVs. Probability Density. Continuous RVs. Background Reading. Recall the discrete distributions

Topic 6 - Continuous Distributions I. Discrete RVs. Probability Density. Continuous RVs. Background Reading. Recall the discrete distributions Topic 6 - Continuous Distributions I Discrete RVs Recall the discrete distributions STAT 511 Professor Bruce Craig Binomial - X= number of successes (x =, 1,...,n) Geometric - X= number of trials (x =,...)

More information

Statistics & Flood Frequency Chapter 3. Dr. Philip B. Bedient

Statistics & Flood Frequency Chapter 3. Dr. Philip B. Bedient Statistics & Flood Frequency Chapter 3 Dr. Philip B. Bedient Predicting FLOODS Flood Frequency Analysis n Statistical Methods to evaluate probability exceeding a particular outcome - P (X >20,000 cfs)

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

Problems from 9th edition of Probability and Statistical Inference by Hogg, Tanis and Zimmerman:

Problems from 9th edition of Probability and Statistical Inference by Hogg, Tanis and Zimmerman: Math 224 Fall 207 Homework 5 Drew Armstrong Problems from 9th edition of Probability and Statistical Inference by Hogg, Tanis and Zimmerman: Section 3., Exercises 3, 0. Section 3.3, Exercises 2, 3, 0,.

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

Business Statistics 41000: Probability 4

Business Statistics 41000: Probability 4 Business Statistics 41000: Probability 4 Drew D. Creal University of Chicago, Booth School of Business February 14 and 15, 2014 1 Class information Drew D. Creal Email: dcreal@chicagobooth.edu Office:

More information

Chapter 7: Point Estimation and Sampling Distributions

Chapter 7: Point Estimation and Sampling Distributions Chapter 7: Point Estimation and Sampling Distributions Seungchul Baek Department of Statistics, University of South Carolina STAT 509: Statistics for Engineers 1 / 20 Motivation In chapter 3, we learned

More information

Continuous Distributions

Continuous Distributions Quantitative Methods 2013 Continuous Distributions 1 The most important probability distribution in statistics is the normal distribution. Carl Friedrich Gauss (1777 1855) Normal curve A normal distribution

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

continuous rv Note for a legitimate pdf, we have f (x) 0 and f (x)dx = 1. For a continuous rv, P(X = c) = c f (x)dx = 0, hence

continuous rv Note for a legitimate pdf, we have f (x) 0 and f (x)dx = 1. For a continuous rv, P(X = c) = c f (x)dx = 0, hence continuous rv Let X be a continuous rv. Then a probability distribution or probability density function (pdf) of X is a function f(x) such that for any two numbers a and b with a b, P(a X b) = b a f (x)dx.

More information

MATH MW Elementary Probability Course Notes Part IV: Binomial/Normal distributions Mean and Variance

MATH MW Elementary Probability Course Notes Part IV: Binomial/Normal distributions Mean and Variance MATH 2030 3.00MW Elementary Probability Course Notes Part IV: Binomial/Normal distributions Mean and Variance Tom Salisbury salt@yorku.ca York University, Dept. of Mathematics and Statistics Original version

More information

Engineering Statistics ECIV 2305

Engineering Statistics ECIV 2305 Engineering Statistics ECIV 2305 Section 5.3 Approximating Distributions with the Normal Distribution Introduction A very useful property of the normal distribution is that it provides good approximations

More information

2011 Pearson Education, Inc

2011 Pearson Education, Inc Statistics for Business and Economics Chapter 4 Random Variables & Probability Distributions Content 1. Two Types of Random Variables 2. Probability Distributions for Discrete Random Variables 3. The Binomial

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

Statistics, Measures of Central Tendency I

Statistics, Measures of Central Tendency I Statistics, Measures of Central Tendency I We are considering a random variable X with a probability distribution which has some parameters. We want to get an idea what these parameters are. We perfom

More information

UQ, STAT2201, 2017, Lectures 3 and 4 Unit 3 Probability Distributions.

UQ, STAT2201, 2017, Lectures 3 and 4 Unit 3 Probability Distributions. UQ, STAT2201, 2017, Lectures 3 and 4 Unit 3 Probability Distributions. Random Variables 2 A random variable X is a numerical (integer, real, complex, vector etc.) summary of the outcome of the random experiment.

More information

Unit 5: Sampling Distributions of Statistics

Unit 5: Sampling Distributions of Statistics Unit 5: Sampling Distributions of Statistics Statistics 571: Statistical Methods Ramón V. León 6/12/2004 Unit 5 - Stat 571 - Ramon V. Leon 1 Definitions and Key Concepts A sample statistic used to estimate

More information

Unit 5: Sampling Distributions of Statistics

Unit 5: Sampling Distributions of Statistics Unit 5: Sampling Distributions of Statistics Statistics 571: Statistical Methods Ramón V. León 6/12/2004 Unit 5 - Stat 571 - Ramon V. Leon 1 Definitions and Key Concepts A sample statistic used to estimate

More information

INF FALL NATURAL LANGUAGE PROCESSING. Jan Tore Lønning, Lecture 3, 1.9

INF FALL NATURAL LANGUAGE PROCESSING. Jan Tore Lønning, Lecture 3, 1.9 INF5830 015 FALL NATURAL LANGUAGE PROCESSING Jan Tore Lønning, Lecture 3, 1.9 Today: More statistics Binomial distribution Continuous random variables/distributions Normal distribution Sampling and sampling

More information

Introduction to Statistics I

Introduction to Statistics I Introduction to Statistics I Keio University, Faculty of Economics Continuous random variables Simon Clinet (Keio University) Intro to Stats November 1, 2018 1 / 18 Definition (Continuous random variable)

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 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

STATISTICAL LABORATORY, May 18th, 2010 CENTRAL LIMIT THEOREM ILLUSTRATION

STATISTICAL LABORATORY, May 18th, 2010 CENTRAL LIMIT THEOREM ILLUSTRATION STATISTICAL LABORATORY, May 18th, 2010 CENTRAL LIMIT THEOREM ILLUSTRATION Mario Romanazzi 1 BINOMIAL DISTRIBUTION The binomial distribution Bi(n, p), being the sum of n independent Bernoulli distributions,

More information

MATH 3200 Exam 3 Dr. Syring

MATH 3200 Exam 3 Dr. Syring . Suppose n eligible voters are polled (randomly sampled) from a population of size N. The poll asks voters whether they support or do not support increasing local taxes to fund public parks. Let M be

More information

Normal Distribution. Definition A continuous rv X is said to have a normal distribution with. the pdf of X is

Normal Distribution. Definition A continuous rv X is said to have a normal distribution with. the pdf of X is Normal Distribution Normal Distribution Definition A continuous rv X is said to have a normal distribution with parameter µ and σ (µ and σ 2 ), where < µ < and σ > 0, if the pdf of X is f (x; µ, σ) = 1

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

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

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

INF FALL NATURAL LANGUAGE PROCESSING. Jan Tore Lønning, Lecture 3, 1.9

INF FALL NATURAL LANGUAGE PROCESSING. Jan Tore Lønning, Lecture 3, 1.9 1 INF5830 2015 FALL NATURAL LANGUAGE PROCESSING Jan Tore Lønning, Lecture 3, 1.9 Today: More statistics 2 Recap Probability distributions Categorical distributions Bernoulli trial Binomial distribution

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

What was in the last lecture?

What was in the last lecture? What was in the last lecture? Normal distribution A continuous rv with bell-shaped density curve The pdf is given by f(x) = 1 2πσ e (x µ)2 2σ 2, < x < If X N(µ, σ 2 ), E(X) = µ and V (X) = σ 2 Standard

More information

Business Statistics 41000: Probability 3

Business Statistics 41000: Probability 3 Business Statistics 41000: Probability 3 Drew D. Creal University of Chicago, Booth School of Business February 7 and 8, 2014 1 Class information Drew D. Creal Email: dcreal@chicagobooth.edu Office: 404

More information

IEOR 3106: Introduction to OR: Stochastic Models. Fall 2013, Professor Whitt. Class Lecture Notes: Tuesday, September 10.

IEOR 3106: Introduction to OR: Stochastic Models. Fall 2013, Professor Whitt. Class Lecture Notes: Tuesday, September 10. IEOR 3106: Introduction to OR: Stochastic Models Fall 2013, Professor Whitt Class Lecture Notes: Tuesday, September 10. The Central Limit Theorem and Stock Prices 1. The Central Limit Theorem (CLT See

More information

Consider the following examples: ex: let X = tossing a coin three times and counting the number of heads

Consider the following examples: ex: let X = tossing a coin three times and counting the number of heads Overview Both chapters and 6 deal with a similar concept probability distributions. The difference is that chapter concerns itself with discrete probability distribution while chapter 6 covers continuous

More information

The Normal Probability Distribution

The Normal Probability Distribution 1 The Normal Probability Distribution Key Definitions Probability Density Function: An equation used to compute probabilities for continuous random variables where the output value is greater than zero

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

Chapter 5. Continuous Random Variables and Probability Distributions. 5.1 Continuous Random Variables

Chapter 5. Continuous Random Variables and Probability Distributions. 5.1 Continuous Random Variables Chapter 5 Continuous Random Variables and Probability Distributions 5.1 Continuous Random Variables 1 2CHAPTER 5. CONTINUOUS RANDOM VARIABLES AND PROBABILITY DISTRIBUTIONS Probability Distributions Probability

More information

Review. Binomial random variable

Review. Binomial random variable Review Discrete RV s: prob y fctn: p(x) = Pr(X = x) cdf: F(x) = Pr(X x) E(X) = x x p(x) SD(X) = E { (X - E X) 2 } Binomial(n,p): no. successes in n indep. trials where Pr(success) = p in each trial If

More information

2017 Fall QMS102 Tip Sheet 2

2017 Fall QMS102 Tip Sheet 2 Chapter 5: Basic Probability 2017 Fall QMS102 Tip Sheet 2 (Covering Chapters 5 to 8) EVENTS -- Each possible outcome of a variable is an event, including 3 types. 1. Simple event = Described by a single

More information

Commonly Used Distributions

Commonly Used Distributions Chapter 4: Commonly Used Distributions 1 Introduction Statistical inference involves drawing a sample from a population and analyzing the sample data to learn about the population. We often have some knowledge

More information

Binomial Distribution and Discrete Random Variables

Binomial Distribution and Discrete Random Variables 3.1 3.3 Binomial Distribution and Discrete Random Variables Prof. Tesler Math 186 Winter 2017 Prof. Tesler 3.1 3.3 Binomial Distribution Math 186 / Winter 2017 1 / 16 Random variables A random variable

More information

The Normal Distribution

The Normal Distribution 5.1 Introduction to Normal Distributions and the Standard Normal Distribution Section Learning objectives: 1. How to interpret graphs of normal probability distributions 2. How to find areas under the

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

Favorite Distributions

Favorite Distributions Favorite Distributions Binomial, Poisson and Normal Here we consider 3 favorite distributions in statistics: Binomial, discovered by James Bernoulli in 1700 Poisson, a limiting form of the Binomial, found

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

Theoretical Foundations

Theoretical Foundations Theoretical Foundations Probabilities Monia Ranalli monia.ranalli@uniroma2.it Ranalli M. Theoretical Foundations - Probabilities 1 / 27 Objectives understand the probability basics quantify random phenomena

More information

Chapter 5: Statistical Inference (in General)

Chapter 5: Statistical Inference (in General) Chapter 5: Statistical Inference (in General) Shiwen Shen University of South Carolina 2016 Fall Section 003 1 / 17 Motivation In chapter 3, we learn the discrete probability distributions, including Bernoulli,

More information

STAT Chapter 7: Central Limit Theorem

STAT Chapter 7: Central Limit Theorem STAT 251 - Chapter 7: Central Limit Theorem In this chapter we will introduce the most important theorem in statistics; the central limit theorem. What have we seen so far? First, we saw that for an i.i.d

More information

3.2 Hypergeometric Distribution 3.5, 3.9 Mean and Variance

3.2 Hypergeometric Distribution 3.5, 3.9 Mean and Variance 3.2 Hypergeometric Distribution 3.5, 3.9 Mean and Variance Prof. Tesler Math 186 Winter 2017 Prof. Tesler 3.2 Hypergeometric Distribution Math 186 / Winter 2017 1 / 15 Sampling from an urn c() 0 10 20

More information

SYSM 6304 Risk and Decision Analysis Lecture 2: Fitting Distributions to Data

SYSM 6304 Risk and Decision Analysis Lecture 2: Fitting Distributions to Data SYSM 6304 Risk and Decision Analysis Lecture 2: Fitting Distributions to Data M. Vidyasagar Cecil & Ida Green Chair The University of Texas at Dallas Email: M.Vidyasagar@utdallas.edu September 5, 2015

More information

PROBABILITY DISTRIBUTIONS. Chapter 6

PROBABILITY DISTRIBUTIONS. Chapter 6 PROBABILITY DISTRIBUTIONS Chapter 6 6.1 Summarize Possible Outcomes and their Probabilities Random Variable Random variable is numerical outcome of random phenomenon www.physics.umd.edu 3 Random Variable

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

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

Week 7. Texas A& M University. Department of Mathematics Texas A& M University, College Station Section 3.2, 3.3 and 3.4

Week 7. Texas A& M University. Department of Mathematics Texas A& M University, College Station Section 3.2, 3.3 and 3.4 Week 7 Oğuz Gezmiş Texas A& M University Department of Mathematics Texas A& M University, College Station Section 3.2, 3.3 and 3.4 Oğuz Gezmiş (TAMU) Topics in Contemporary Mathematics II Week7 1 / 19

More information

Lecture 2. Probability Distributions Theophanis Tsandilas

Lecture 2. Probability Distributions Theophanis Tsandilas Lecture 2 Probability Distributions Theophanis Tsandilas Comment on measures of dispersion Why do common measures of dispersion (variance and standard deviation) use sums of squares: nx (x i ˆµ) 2 i=1

More information

Central Limit Theorem (cont d) 7/28/2006

Central Limit Theorem (cont d) 7/28/2006 Central Limit Theorem (cont d) 7/28/2006 Central Limit Theorem for Binomial Distributions Theorem. For the binomial distribution b(n, p, j) we have lim npq b(n, p, np + x npq ) = φ(x), n where φ(x) is

More information

Contents. The Binomial Distribution. The Binomial Distribution The Normal Approximation to the Binomial Left hander example

Contents. The Binomial Distribution. The Binomial Distribution The Normal Approximation to the Binomial Left hander example Contents The Binomial Distribution The Normal Approximation to the Binomial Left hander example The Binomial Distribution When you flip a coin there are only two possible outcomes - heads or tails. This

More information

STAT Chapter 5: Continuous Distributions. Probability distributions are used a bit differently for continuous r.v. s than for discrete r.v. s.

STAT Chapter 5: Continuous Distributions. Probability distributions are used a bit differently for continuous r.v. s than for discrete r.v. s. STAT 515 -- Chapter 5: Continuous Distributions Probability distributions are used a bit differently for continuous r.v. s than for discrete r.v. s. Continuous distributions typically are represented by

More information

Lecture 3: Probability Distributions (cont d)

Lecture 3: Probability Distributions (cont d) EAS31116/B9036: Statistics in Earth & Atmospheric Sciences Lecture 3: Probability Distributions (cont d) Instructor: Prof. Johnny Luo www.sci.ccny.cuny.edu/~luo Dates Topic Reading (Based on the 2 nd Edition

More information

Chapter 4 Continuous Random Variables and Probability Distributions

Chapter 4 Continuous Random Variables and Probability Distributions Chapter 4 Continuous Random Variables and Probability Distributions Part 2: More on Continuous Random Variables Section 4.5 Continuous Uniform Distribution Section 4.6 Normal Distribution 1 / 28 One more

More information

The Normal Distribution

The Normal Distribution The Normal Distribution The normal distribution plays a central role in probability theory and in statistics. It is often used as a model for the distribution of continuous random variables. Like all models,

More information

Figure 1: 2πσ is said to have a normal distribution with mean µ and standard deviation σ. This is also denoted

Figure 1: 2πσ is said to have a normal distribution with mean µ and standard deviation σ. This is also denoted Figure 1: Math 223 Lecture Notes 4/1/04 Section 4.10 The normal distribution Recall that a continuous random variable X with probability distribution function f(x) = 1 µ)2 (x e 2σ 2πσ is said to have a

More information

NORMAL APPROXIMATION. In the last chapter we discovered that, when sampling from almost any distribution, e r2 2 rdrdϕ = 2π e u du =2π.

NORMAL APPROXIMATION. In the last chapter we discovered that, when sampling from almost any distribution, e r2 2 rdrdϕ = 2π e u du =2π. NOMAL APPOXIMATION Standardized Normal Distribution Standardized implies that its mean is eual to and the standard deviation is eual to. We will always use Z as a name of this V, N (, ) will be our symbolic

More information

Statistical Tables Compiled by Alan J. Terry

Statistical Tables Compiled by Alan J. Terry Statistical Tables Compiled by Alan J. Terry School of Science and Sport University of the West of Scotland Paisley, Scotland Contents Table 1: Cumulative binomial probabilities Page 1 Table 2: Cumulative

More information

Probability Theory. Mohamed I. Riffi. Islamic University of Gaza

Probability Theory. Mohamed I. Riffi. Islamic University of Gaza Probability Theory Mohamed I. Riffi Islamic University of Gaza Table of contents 1. Chapter 2 Discrete Distributions The binomial distribution 1 Chapter 2 Discrete Distributions Bernoulli trials and the

More information

Random Variables Handout. Xavier Vilà

Random Variables Handout. Xavier Vilà Random Variables Handout Xavier Vilà Course 2004-2005 1 Discrete Random Variables. 1.1 Introduction 1.1.1 Definition of Random Variable A random variable X is a function that maps each possible outcome

More information

Chapter 5. Statistical inference for Parametric Models

Chapter 5. Statistical inference for Parametric Models Chapter 5. Statistical inference for Parametric Models Outline Overview Parameter estimation Method of moments How good are method of moments estimates? Interval estimation Statistical Inference for Parametric

More information

Introduction to Business Statistics QM 120 Chapter 6

Introduction to Business Statistics QM 120 Chapter 6 DEPARTMENT OF QUANTITATIVE METHODS & INFORMATION SYSTEMS Introduction to Business Statistics QM 120 Chapter 6 Spring 2008 Chapter 6: Continuous Probability Distribution 2 When a RV x is discrete, we can

More information

Class 16. Daniel B. Rowe, Ph.D. Department of Mathematics, Statistics, and Computer Science. Marquette University MATH 1700

Class 16. Daniel B. Rowe, Ph.D. Department of Mathematics, Statistics, and Computer Science. Marquette University MATH 1700 Class 16 Daniel B. Rowe, Ph.D. Department of Mathematics, Statistics, and Computer Science Copyright 013 by D.B. Rowe 1 Agenda: Recap Chapter 7. - 7.3 Lecture Chapter 8.1-8. Review Chapter 6. Problem Solving

More information

Department of Quantitative Methods & Information Systems. Business Statistics. Chapter 6 Normal Probability Distribution QMIS 120. Dr.

Department of Quantitative Methods & Information Systems. Business Statistics. Chapter 6 Normal Probability Distribution QMIS 120. Dr. Department of Quantitative Methods & Information Systems Business Statistics Chapter 6 Normal Probability Distribution QMIS 120 Dr. Mohammad Zainal Chapter Goals After completing this chapter, you should

More information

AMS7: WEEK 4. CLASS 3

AMS7: WEEK 4. CLASS 3 AMS7: WEEK 4. CLASS 3 Sampling distributions and estimators. Central Limit Theorem Normal Approximation to the Binomial Distribution Friday April 24th, 2015 Sampling distributions and estimators REMEMBER:

More information

4-1. Chapter 4. Commonly Used Distributions by The McGraw-Hill Companies, Inc. All rights reserved.

4-1. Chapter 4. Commonly Used Distributions by The McGraw-Hill Companies, Inc. All rights reserved. 4-1 Chapter 4 Commonly Used Distributions 2014 by The Companies, Inc. All rights reserved. Section 4.1: The Bernoulli Distribution 4-2 We use the Bernoulli distribution when we have an experiment which

More information

18.05 Problem Set 3, Spring 2014 Solutions

18.05 Problem Set 3, Spring 2014 Solutions 8.05 Problem Set 3, Spring 04 Solutions Problem. (0 pts.) (a) We have P (A) = P (B) = P (C) =/. Writing the outcome of die first, we can easily list all outcomes in the following intersections. A B = {(,

More information

5.3 Statistics and Their Distributions

5.3 Statistics and Their Distributions Chapter 5 Joint Probability Distributions and Random Samples Instructor: Lingsong Zhang 1 Statistics and Their Distributions 5.3 Statistics and Their Distributions Statistics and Their Distributions Consider

More information

MAS1403. Quantitative Methods for Business Management. Semester 1, Module leader: Dr. David Walshaw

MAS1403. Quantitative Methods for Business Management. Semester 1, Module leader: Dr. David Walshaw MAS1403 Quantitative Methods for Business Management Semester 1, 2018 2019 Module leader: Dr. David Walshaw Additional lecturers: Dr. James Waldren and Dr. Stuart Hall Announcements: Written assignment

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

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

Probability Distributions II

Probability Distributions II Probability Distributions II Summer 2017 Summer Institutes 63 Multinomial Distribution - Motivation Suppose we modified assumption (1) of the binomial distribution to allow for more than two outcomes.

More information

4: Probability. What is probability? Random variables (RVs)

4: Probability. What is probability? Random variables (RVs) 4: Probability b binomial µ expected value [parameter] n number of trials [parameter] N normal p probability of success [parameter] pdf probability density function pmf probability mass function RV random

More information