TELECOMMUNICATIONS ENGINEERING

Size: px
Start display at page:

Download "TELECOMMUNICATIONS ENGINEERING"

Transcription

1 TELECOMMUNICATIONS ENGINEERING STATISTICS COMPUTER LAB SESSION # 3. PROBABILITY MODELS AIM: Introduction to most common discrete and continuous probability models. Characterization, graphical representation. Solving real problems by simulation in MATLAB/Octave. 1. Introduction In general, to generate continuous random variables it is usual to apply the inverse transform method of the distribution function (if inverse exists). For discrete r.v. s, it is possible to generate them using a boolean. In MATLAB/Octave, there exist several functions implemented in MATLAB/Octave in order to generate frequently used probability models. The next table summarizes some of the most common functions used in MATLAB/Octave to generate probability models of discrete and continuous random variables: where m and n, are Function Description Syntax normrnd random numbers N(µ, σ) normrnd(mu,sigma,m,n) randn random numbers N(, 1) randn(m,n) exprnd random numbers Exp(λ) exprnd(1/lambda,m,n) binornd random numbers Bin(n, p) binornd(n,p,m,n) poissrnd random numbers Poiss(λ) poissrnd(lambda,m,n) respectively the numbers of rows and columns generated. 2. Continuous case Normal distribution Recall that Normal distribution has density function: X N (µ, σ) : f(x) = 1 σ 1 2π exp 2σ 2 (x µ)2, donde x R, σ > y µ R. 1. Represent in MATLAB/Octave probability density function of a r.v. distributed as N (µ, σ). Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 1

2 The command normdf(x,mu,sigma), returns the probability density function of a Normal(µ,σ), evaluate in the values of x. In MATLAB/Octave:.4 % generate a sequence of % 1 numbers between -3 and 3 >> x=linspace(-3,3,1); >> mu=; >> sigma=1; >> y=normpdf(x,mu,sigma); >> plot(x,y) Represent by graphs the probability density functions of a normal r.v. for different values of the distribution parameters: a) Fix σ and change µ Consider 3 Normal distributions with constant standard deviation (σ = 1) and different means (µ =-1,,1). Analyze the shape and the position of the distribution in terms of model parameters. b) Fix µ and change σ Consider 3 Normal distributions with constant mean (µ = ) and different standard deviation (σ =.3,.5,1.2). Analyze the shape and the position of the distribution in terms of model parameters. >> x = linspace(-3,3,1); % a) >> y1 = normpdf(x,,1); % y1 is Normal with mean & std. 1 >> y2 = normpdf(x,-1,1); % y1 is Normal with mean -1 & std. 1 >> y3 = normpdf(x,1,1); % y1 is Normal with mean 1 & std. 1 % b) >> y4 = normpdf(x,,.3); % y4 is Normal with mean & std..3 >> y5 = normpdf(x,,.5); % y5 is Normal with mean & std..5 >> y6 = normpdf(x,, 1.2); % y6 is Normal with mean 6 std. 1.2 Once we have the 6 normal distributed r.v. s, we can compare them graphically using the commands: subplot 1 ; plot and hold on, hold off. 1 subplot allow us to create several graphs in the same panel. For example, subplot(1,2,i), implies we plot in one row and two columns, graphs i = 1 and 2 Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 2

3 % GRAPHIC for CASE a) >> subplot(1,2,1) % 1 row, 2 columns, graph n o 1 >> hold on % holds the current plot so that % subsequent graphing commands add to the existing graph >> plot(x,y1, b ) % graph x/y1 in blue >> plot(x,y2, g ) % graph x/y2 in green >> plot(x,y3, r ) % graph x/y2 in red >> hold off % returns to the default % GRAPHIC for CASE b) >> subplot(1,2,2) % 1 row, 2 columns, graph n o 2 >> hold on >> plot(x,y4, b ) >> plot(x,y5, g ) >> plot(x,y6, r ) >> hold off % You can also >> subplot(1,2,1) >> plot(x,y1, b,x,y2, g,x,y3, r ) >> subplot(1,2,2) >> plot(x,y4, b,x,y5, g,x,y6, r ) mu = -1, sigma = 1 mu =,sigma =.3 mu =, sigma = 1 mu =, sigma =.5.35 mu = 1, sigma = mu =,sigma = Note: Another alternative way to represent the graph for a Normal distribution (µ = y σ = 2,5) for x ( 1, 1) may be: >> fplot( normpdf(x,, 2.5), [-1 1], g ) Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 3

4 MATLAB s command disttool in the Command Window, we can plot the density functions for more probability models selection Function Type/PDF. 3. Generate in MATLAB/Octave random numbers from the Normal distribuion. In MATLAB/Octave s it is possible to generate random numbers from a Normal distribution (µ, σ), using build-in functions as: >> x= normrnd(mu,sigma,m,n); Command randn, generates random number from a standard Normal distribution (i.e., with mean µ = and standard deviation σ = 1). From randn, it is also possible to generate random numbers N (µ, σ). Let Z N (, 1), we can obtain X N (µ, σ), given that: X = Z σ + µ >> z= randn(m,n); >> x= z*sigma + mu; We can check that the generated numbers are normally distributed by N (µ, σ) by its histogram: 3 25 >> m=1; n=1; >> sigma=.75; mu=1; >> z=randn(m,n); x=z*sigma + mu; >> hist(x) Cumulative distribution function (CDF). In MATLAB/Octave, command normcdf(x,mu,sigma) gives the probability p = P (X x) of a Normal distribution of parameters µ and σ. Represent the cumulative distribution function for values of x [ 3, 3], given that X is standard normal. Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 4

5 >> x = [-3:.1:3]; >> mu=; sigma=1; >> p = normcdf(x,mu,sigma); % p = normcdf(x) gives % the CDF of a % N(,1) % Its inverse is x = norminv(p,mu,sigma) >> plot(x,p) >> grid on Discrete case Binomial distribution The probability function p(x) of a Binomial distribution Bin(n, p) is: ( ) n X Bin(n, p) : p(x) = p x (1 p) n x where x =, 1,..., n y p < 1. x where n is the number of trials and the parameter p the probabolity of success. 1. Create a MATLAB/Octave s function to represent graphically the probability function of a Binomial distribution. %% create fp_binomial.m function y=fp_binomial(x,n,p) for i=1:length(x) y(i)=(nchoosek(n,x(i)))*(p^x(i))*((1-p)^(n-x(i))) ; end %% Note: function nchoosek(n,x) computes ( n x), however, for large values of n, the result is not exact. Therefore, for large values of n, we can use Gamma function, Γ: Γ(p) = + e x x p 1 dx, where p > Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 5

6 Properties of Gamma function (Γ): a) Γ(1) =! = 1 b) Γ(p) = (p 1)Γ(p 1), p > and therefore Γ(p) = (p 1)!, p N. c) ( ) n x = Γ(n+1) d) Γ( 1 2 ) = π. Γ(x+1) Γ(n x+1) 2. Create in MATLAB/Octave a function to represent probability functions from a Binomial distribution for large values of n. %% crete fp_binomialn.m %% using Prop. 3 of Gamma function function y = fp_binomialn(x,n,p) for i=1:length(x) y(i)=(gamma(n+1)*(p^x(i))*((1-p)^(n-x(i))))/ (gamma(x(i)+1)*gamma(n-x(i)+1)); end %% 3. Use the function created in the previous section, and represent graphically the probability function of a Binomial r.v. for: a) Fix p and change n create 3 Binomials: Bin(5,.2), Bin(1,.2), Bin(2,.2) b) Fix n and change p create 3 Binomials: % Case a): Bin(1,.1), Bin(1,.5), Bin(1,.8) >> x5=:5 % create a sequence between and 5 >> y5=fp_binomial(x5,5,.2) % call to fp_binomial.m >> sum(y5) % check if sum is =1 >> x1=:1; >> y1=fp_binomial(x1,1,.2); >> x2=:2; >> y2=fp_binomial(x2,2,.2); Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 6

7 % Caso b): >> x1 = :1; >> y1 = fp_binomialn(x1, 1,.1); % call to >> y2 = fp_binomialn(x1, 1,.5); % fp_binomialn.m >> y3 = fp_binomialn(x1, 1,.8); We can compare both graphs: >> subplot(1,2,1) >> plot(x5,y5,., x1,y1, +, x2, y2, * ); >> legend( n=5, p=.2, n=1, p=.2, n=2, p=.2 ) >> subplot(1,2,2) >> plot(x1, y1,., x1, y2, +, x1, y3, * ); >> legend( n = 1, p =.1, n = 1, p =.5, n = 1, p =.8 );.45.4 n=5, p=.2 n=1, p=.2 n=2, p= n = 1, p =.1 n = 1, p =.5 n = 1, p = NOTE: it is also possible to use command binopdf(x,n,p) to represent the probability function of a binomial (n, p) 4. By definition, we know tha Bin(n, p) is the sum of n independent Bernoulli r.v. s: Binom(n, p) = Bern(p) Bern(p) }{{} n times Create a function in MATLAB/Octave to generate random numbers from the Binomial distribution. Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 7

8 %% create function na_binomial.m function y= na_binomial(n_dat, n, p) % n_dat is % n o of binomial data % to obtain prob = rand(n,n_dat); % simulate n trials success = prob < p; % if it holds, then we obtain a success y =sum(success); % sum all success %% In Command Window: % Obtain 1 binomial numbers from the sum of the n o % of successes from n trials with probability of success p >> y = na_binomial(1,n,p) Numerically, we can verified the properties of the mean and variance of the simulated Binomial: E[X] = n p Var[X] = n p q >> n=1; p=.1; >> y = na_binomial(1,n,p) >> mean(y) % aprox. 1 >> var(y) % aprox Generation of random variables As noted in previous laboratory, the inverse transform method allow us to generate continuous random variables from its distribution function if it admits inverse. Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 8

9 Weibull distribution: Let X be a Weibull 2 random variable, such that X Weibull(α, β), with distribution function: { x > F X (x) = 1 e (x/β)α x where α and β are known parameters. Give MATLAB/Octave s code to generate Weibull distributed r.v s. From inverse transform method, considering u = F X (x), 1 e (x/β)α = u e (x/β)α = 1 u (x/β) α = ln(1 u) x/β = [ ln(1 u)] 1 α x = β[ ln(1 u)] 1 α And therefore: >> u = rand(n,1); >> x = beta*(-log(1-u))^(1/alpha); 4. Q function The Q function is defined as the complement of the distribution function of a standard normal N (, 1), i.e. as: Q(x) = P (X > x) with X N (, 1) Suppose a Q function with upper bounds (cs1) and (cs2) and lower bound (ci) given by Q(x) 1 x2 e 2 x (cs1) 2 Q(x) < 1 e x2 2 x > (cs2) 2πx Q(x) > 1 ( 1 1 ) 2πx x 2 e x2 2 para todo x > 1 (ci) 2 NOTA: this distribution is very common in reliability, for instance, to study the lifetimes of components untill it fails. Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 9

10 a) MATLAB/Octave s function normcdf(x,mu,sigma) returns the CDF of a N (µ, σ). How would you compute in MATLAB/Octave Q function? >> Q = 1 - normcdf(x,,1) b) Write a MATLAB/Octave s code to represent graphically the Q function in the interval (, 5] with upper bounds cs1 and cs2 and lower bounds ci. The obtained result must be similar to figure 1. Note: Represent x (, 5] as x=[.1:.1:5]. For the lower bound ci, observe that there is a vertical asymptote in x = 1, therefore, define xi=[1.1:.1:5] only for this bound. Use logarithmic scale to represent the bounds. >>x1= [1.1:.1:5]; >>for i=1:length(x1) ci(i) = (1/x1(i)*sqrt(2*pi))*(1- (1/x1(i)^2))*exp(-.5*x1(i)^2); end >>x = [.1:.1:5]; >>for i=1:length(x) cs1(i)=.5*exp(-.5*x(i)^2); cs2(i)=(1/(x(i)*sqrt(2*pi))) * exp(-.5*x(i)^2); end >>q = 1- normcdf(x,,1); >> plot(x, log(q), black ) >> hold on >> plot(x, log(cs1), r ) >> plot(x, log(cs2), g ) >> plot(x1, log(ci), m ) >> hold off Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 1

11 1 5 log(q) log(cs1) log(cs2) log(ci) Figura 1: Graphical representation of Q function with bounds in log scale, log(cs1), log(cs2) and log(ci). Vertical line represent the asymptote in x = Exercises of interest 1. Let X be a r.v. hours dedicated to perform an activity, with density function f (x) = { 1 4 (x + 1) < x < 2 otherwise a) Calculate, analitically and using MATLAB/Octave, the probability that the time required to perform the activity is more than one hour and a half. b) If 1 activities are performed following a r.v. X, calculate analitically and using MAT- LAB/Octave, the probability of exactly in three of the activities, the time employed to perform each of them is more than one hour and a half. Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 11

12 a) Analitically we have: P (X > 1,5) = = x=1,5 f (x) dx = 2 x=1,5 ( 4 9 ) + 1 ( 2 3 ) (x + 1) dx = = = =,3438 [ x 2 ] 2 1, [x]2 1,5 To solve using MATLAB/Octave, we use the inverse transform method, so we calculate the distribution function: x < x 1 F (x) = 4 (y + 1) dy = 1 8 x x x < x and the inverse: 1 8 x x = u x 2 + 2x 8u = x = 2 ± u 2 From the definition of the r.v. X we only consider the positive value, and therefore to generate the random variable: u U (, 1) x = u 2 The MATLAB/Octave s code is: >> u=rand(1,1); >> x=(-2+sqrt(4+32*u))/2; >> prob=sum(x>1.5)/1.338 b) Analitically, if the random variable Y is defined as number of activities among the 1 in which the employed time is more than one hour and a half, we have Y Bin ( n = 1, p = 11 32) and calculate P (Y = 3) = ( 1 3 ) ( ) 3 ( ) 21 7 =, Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 12

13 The MATLAB/Octave s code is: >> u=rand(1,1); >> x=(-2+sqrt(4+32*u))/2; >> conta=(x>1.5); >> suma=sum(conta,2); >> prob=sum(suma==3)/ Ex. FEB 24 Ing. Tel. (C1a) (link). The aim of this problem is to analyze a communication channel. When the channel canal transmits a 1, the receptor recieves a r.v. which follow a Normal distribution with mean 1 and variance, 5. If the binary channel transmits a 2, the receptor recieves a Normal r.v. with mean 2 and variance, 5. Let P (1) be the probability if transmiting a 1. a) Given P (1) =, 75. What is the probability that a 1 has been transmited if the receptor has received a signal greater than 2? T 1 = transmit 1, P (T 1 ) =,75, R T 1 N(1,,5) T 2 = transmit 2, P (T 2 ) =,25, R T 2 N(2,,5) P (T 1 R > 2) = P (R > 2 T 1)P (T 1 ) = P (R > 2) P (R > 2 T 1 )P (T 1 ) = P (R > 2 T 1 )P (T 1 ) + P (R > 2 T 2 )P (T 2 ) Let Z 1 = R T 1 1,5 and Z 2 = R T 2 2,5, P (Z 1 > 1,41),75 P (T 1 R > 2) = P (Z 1 > 1,41),75 + P (Z 2 > ),25,793,75 =,793,75 +,5,25 =,3224 Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 13

14 In MATLAB/Octave, it is possible to approximate the probability by: >> n=1; >> u=rand(n,1); % simulate n random trials >> p=.75; % is the probability to transmit a 1 % message transmition in the channel >> t=1*(u<=p)+2*(u>p); % Simulate z1 and z2 with function normrnd(mu,sigma,n,1) >> z1 = normrnd(1,sqrt(.5),n,1); >> z2 = normrnd(2,sqrt(.5),n,1) % message reception >> r=(t==1).*z1+(t==2).*z2; >> r=2*(r>2)+1*(r<=2); % create a table transmited/received % (ONLY MATLAB) >> a=crosstab(t,r) >> a = % a(1,1) a(1,2) % a(2,1) a(2,2) % we ara ask for P(t==1 r>2), in the simulation >> a(1,2)/(a(1,2)+a(2,2)).3241 It is also possible to solve the probleo, without crosstab: % construct matrix A, with 2 columsn transmited and received >> A = [t r] % count how many times the condition is true >> a12 = sum(a(:,1)==1 & A(:,2)==2) 61 % count how many times the condition is true >> a22 = sum(a(:,2)==1 & A(:,2)==2) 1276 >> a12/(a12+a22).3234 % aprox Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 14

15 5. Ex. SEP 27 Ing. Téc. Tel. (P2b). (link). The duration in days of a type of sensors follows a Weibull distribution with: ( ( ) ) t 1/2 F (t) = 1 exp α ( f (t) = 1/2 ( ) ) t 1/2 α 1/2 t 1/2 exp α con α >. a) Suppose a box with 6 unused sensors with duration time distributed as a Weibull with α = 1 4 days, which verifies that E [T ] = 1 2 days and V [T ] = 5 4 days2. Suppose you start using a sensor from the box and replace it with another one from the box whenever it fails. What is the probability that when the last sensor of the box has failed it has been passed 47 days? Use any of this values. x 1,64 1,64 1,96 1, Q (x),5,95,25,975 1 b) Comment next MATLAB s code, what it the approximate value of prob. >> u=rand(6,1); >> w=.25*(-log(1-u)).^(1/.5); >> s=sum(w); >> prob=sum(s<47)/1 a) Let T i a r.v. of time until i th sensor fails, calculate: P ( 6 ) T i 47 i=1 Given that the r.v. s T i verify Central Limit Theorem conditions, we have (6 12 ), if we standardize P ( Z < P ( 6 i=1 T i 47 6 i=1 ) T i N = P i=1 T i < ) 47 3 = P (Z < 1, 96) = 1 Q (1, 96) = 1, 25 =, 975 8, 66 Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 15

16 b) Firstly, we have to generate a Weibull distribution. We can apply inverse transform method. Therefore ( ( ) ) t β F (t) = 1 exp = u α ( ) t β ln (1 u) = α t = α [ Ln (1 u)] 1/β First line generates a 6 1 matrix with random numbers U (, 1). In second line, we generate a 6 1 matrix, with random number distributed as a Weibull with α = 1 4 days, (we are generating times when sensors are failing). Third line, applies the total sum of the 6 sensors. Finally, fourth line checks how many times out of 1, the total duration is less than 47, by using he boolean condition (s < 47). Therefore, this code has the same answer as in a). So the result of prob should be very close to the theoretical value of, Proposed exercises 1. Indicate MATLAB/Octave s code to solve the problem proposed in: Ex. SEP 25 Ing. Téc. Tel. C3 a) and b) (link). 2. Indicate MATLAB/Octave s code to solve the problem proposed in: Ex. JUN 22 Ing. Inf. (P1b) (link). 3. Indicate MATLAB/Octave s code to solve the problem proposed in: Ex. SEP 27 Ing. Téc. Tel. (C4a and C4b). (link). Ingeniería de Telecomunicación - Estadística (29-21), PRÁCTICA 3. MODELOS DE PROBABILIDAD 16

TELECOMMUNICATIONS ENGINEERING

TELECOMMUNICATIONS ENGINEERING TELECOMMUNICATIONS ENGINEERING STATISTICS 2012-2013 COMPUTER LAB SESSION # 3. PROBABILITY MODELS AIM: Introduction to most common discrete and continuous probability models. Characterization, graphical

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

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

Session Window. Variable Name Row. Worksheet Window. Double click on MINITAB icon. You will see a split screen: Getting Started with MINITAB

Session Window. Variable Name Row. Worksheet Window. Double click on MINITAB icon. You will see a split screen: Getting Started with MINITAB STARTING MINITAB: Double click on MINITAB icon. You will see a split screen: Session Window Worksheet Window Variable Name Row ACTIVE WINDOW = BLUE INACTIVE WINDOW = GRAY f(x) F(x) Getting Started with

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

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

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

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

GETTING STARTED. To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop

GETTING STARTED. To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop Minitab 14 1 GETTING STARTED To OPEN MINITAB: Click Start>Programs>Minitab14>Minitab14 or Click Minitab 14 on your Desktop The Minitab session will come up like this 2 To SAVE FILE 1. Click File>Save Project

More information

Discrete Random Variables

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

More information

INDIAN INSTITUTE OF SCIENCE STOCHASTIC HYDROLOGY. Lecture -5 Course Instructor : Prof. P. P. MUJUMDAR Department of Civil Engg., IISc.

INDIAN INSTITUTE OF SCIENCE STOCHASTIC HYDROLOGY. Lecture -5 Course Instructor : Prof. P. P. MUJUMDAR Department of Civil Engg., IISc. INDIAN INSTITUTE OF SCIENCE STOCHASTIC HYDROLOGY Lecture -5 Course Instructor : Prof. P. P. MUJUMDAR Department of Civil Engg., IISc. Summary of the previous lecture Moments of a distribubon Measures of

More information

Chapter 4: Commonly Used Distributions. Statistics for Engineers and Scientists Fourth Edition William Navidi

Chapter 4: Commonly Used Distributions. Statistics for Engineers and Scientists Fourth Edition William Navidi Chapter 4: Commonly Used Distributions Statistics for Engineers and Scientists Fourth Edition William Navidi 2014 by Education. This is proprietary material solely for authorized instructor use. Not authorized

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

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

Exam M Fall 2005 PRELIMINARY ANSWER KEY

Exam M Fall 2005 PRELIMINARY ANSWER KEY Exam M Fall 005 PRELIMINARY ANSWER KEY Question # Answer Question # Answer 1 C 1 E C B 3 C 3 E 4 D 4 E 5 C 5 C 6 B 6 E 7 A 7 E 8 D 8 D 9 B 9 A 10 A 30 D 11 A 31 A 1 A 3 A 13 D 33 B 14 C 34 C 15 A 35 A

More information

Chapter 3 Statistical Quality Control, 7th Edition by Douglas C. Montgomery. Copyright (c) 2013 John Wiley & Sons, Inc.

Chapter 3 Statistical Quality Control, 7th Edition by Douglas C. Montgomery. Copyright (c) 2013 John Wiley & Sons, Inc. 1 3.1 Describing Variation Stem-and-Leaf Display Easy to find percentiles of the data; see page 69 2 Plot of Data in Time Order Marginal plot produced by MINITAB Also called a run chart 3 Histograms Useful

More information

Lecture 3: Review of Probability, MATLAB, Histograms

Lecture 3: Review of Probability, MATLAB, Histograms CS 4980/6980: Introduction to Data Science c Spring 2018 Lecture 3: Review of Probability, MATLAB, Histograms Instructor: Daniel L. Pimentel-Alarcón Scribed and Ken Varghese This is preliminary work and

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

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

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

Two hours. To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER

Two hours. To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER Two hours MATH20802 To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER STATISTICAL METHODS Answer any FOUR of the SIX questions.

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

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

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 / 27 Continuous

More information

IEOR E4703: Monte-Carlo Simulation

IEOR E4703: Monte-Carlo Simulation IEOR E4703: Monte-Carlo Simulation Generating Random Variables and Stochastic Processes Martin Haugh Department of Industrial Engineering and Operations Research Columbia University Email: martin.b.haugh@gmail.com

More information

Normal distribution Approximating binomial distribution by normal 2.10 Central Limit Theorem

Normal distribution Approximating binomial distribution by normal 2.10 Central Limit Theorem 1.1.2 Normal distribution 1.1.3 Approimating binomial distribution by normal 2.1 Central Limit Theorem Prof. Tesler Math 283 Fall 216 Prof. Tesler 1.1.2-3, 2.1 Normal distribution Math 283 / Fall 216 1

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

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

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

Statistics 431 Spring 2007 P. Shaman. Preliminaries

Statistics 431 Spring 2007 P. Shaman. Preliminaries Statistics 4 Spring 007 P. Shaman The Binomial Distribution Preliminaries A binomial experiment is defined by the following conditions: A sequence of n trials is conducted, with each trial having two possible

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

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

BIOINFORMATICS MSc PROBABILITY AND STATISTICS SPLUS SHEET 1

BIOINFORMATICS MSc PROBABILITY AND STATISTICS SPLUS SHEET 1 BIOINFORMATICS MSc PROBABILITY AND STATISTICS SPLUS SHEET 1 A data set containing a segment of human chromosome 13 containing the BRCA2 breast cancer gene; it was obtained from the National Center for

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

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

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

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

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

Basic Procedure for Histograms

Basic Procedure for Histograms Basic Procedure for Histograms 1. Compute the range of observations (min. & max. value) 2. Choose an initial # of classes (most likely based on the range of values, try and find a number of classes that

More information

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

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

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

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

More information

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

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

Confidence Intervals Introduction

Confidence Intervals Introduction Confidence Intervals Introduction A point estimate provides no information about the precision and reliability of estimation. For example, the sample mean X is a point estimate of the population mean μ

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

Binomial Approximation and Joint Distributions Chris Piech CS109, Stanford University

Binomial Approximation and Joint Distributions Chris Piech CS109, Stanford University Binomial Approximation and Joint Distributions Chris Piech CS109, Stanford University Four Prototypical Trajectories Review The Normal Distribution X is a Normal Random Variable: X ~ N(µ, s 2 ) Probability

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

CE 513: STATISTICAL METHODS

CE 513: STATISTICAL METHODS /CE 608 CE 513: STATISTICAL METHODS IN CIVIL ENGINEERING Lecture-1: Introduction & Overview Dr. Budhaditya Hazra Room: N-307 Department of Civil Engineering 1 Schedule of Lectures Last class before puja

More information

Discrete Random Variables and Probability Distributions. Stat 4570/5570 Based on Devore s book (Ed 8)

Discrete Random Variables and Probability Distributions. Stat 4570/5570 Based on Devore s book (Ed 8) 3 Discrete Random Variables and Probability Distributions Stat 4570/5570 Based on Devore s book (Ed 8) Random Variables We can associate each single outcome of an experiment with a real number: We refer

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

Lecture Notes 6. Assume F belongs to a family of distributions, (e.g. F is Normal), indexed by some parameter θ.

Lecture Notes 6. Assume F belongs to a family of distributions, (e.g. F is Normal), indexed by some parameter θ. Sufficient Statistics Lecture Notes 6 Sufficiency Data reduction in terms of a particular statistic can be thought of as a partition of the sample space X. Definition T is sufficient for θ if the conditional

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

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

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

Continuous Probability Distributions & Normal Distribution

Continuous Probability Distributions & Normal Distribution Mathematical Methods Units 3/4 Student Learning Plan Continuous Probability Distributions & Normal Distribution 7 lessons Notes: Students need practice in recognising whether a problem involves a discrete

More information

. (i) What is the probability that X is at most 8.75? =.875

. (i) What is the probability that X is at most 8.75? =.875 Worksheet 1 Prep-Work (Distributions) 1)Let X be the random variable whose c.d.f. is given below. F X 0 0.3 ( x) 0.5 0.8 1.0 if if if if if x 5 5 x 10 10 x 15 15 x 0 0 x Compute the mean, X. (Hint: First

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

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

Review of the Topics for Midterm I

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

More information

Chapter 8: Sampling distributions of estimators Sections

Chapter 8: Sampling distributions of estimators Sections Chapter 8 continued Chapter 8: Sampling distributions of estimators Sections 8.1 Sampling distribution of a statistic 8.2 The Chi-square distributions 8.3 Joint Distribution of the sample mean and sample

More information

LESSON 7 INTERVAL ESTIMATION SAMIE L.S. LY

LESSON 7 INTERVAL ESTIMATION SAMIE L.S. LY LESSON 7 INTERVAL ESTIMATION SAMIE L.S. LY 1 THIS WEEK S PLAN Part I: Theory + Practice ( Interval Estimation ) Part II: Theory + Practice ( Interval Estimation ) z-based Confidence Intervals for a Population

More information

CH 5 Normal Probability Distributions Properties of the Normal Distribution

CH 5 Normal Probability Distributions Properties of the Normal Distribution Properties of the Normal Distribution Example A friend that is always late. Let X represent the amount of minutes that pass from the moment you are suppose to meet your friend until the moment your friend

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

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

Statistics for Managers Using Microsoft Excel 7 th Edition

Statistics for Managers Using Microsoft Excel 7 th Edition Statistics for Managers Using Microsoft Excel 7 th Edition Chapter 5 Discrete Probability Distributions Statistics for Managers Using Microsoft Excel 7e Copyright 014 Pearson Education, Inc. Chap 5-1 Learning

More information

ECE 340 Probabilistic Methods in Engineering M/W 3-4:15. Lecture 10: Continuous RV Families. Prof. Vince Calhoun

ECE 340 Probabilistic Methods in Engineering M/W 3-4:15. Lecture 10: Continuous RV Families. Prof. Vince Calhoun ECE 340 Probabilistic Methods in Engineering M/W 3-4:15 Lecture 10: Continuous RV Families Prof. Vince Calhoun 1 Reading This class: Section 4.4-4.5 Next class: Section 4.6-4.7 2 Homework 3.9, 3.49, 4.5,

More information

Random Variables and Probability Distributions

Random Variables and Probability Distributions Chapter 3 Random Variables and Probability Distributions Chapter Three Random Variables and Probability Distributions 3. Introduction An event is defined as the possible outcome of an experiment. In engineering

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

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

ECON 214 Elements of Statistics for Economists

ECON 214 Elements of Statistics for Economists ECON 214 Elements of Statistics for Economists Session 7 The Normal Distribution Part 1 Lecturer: Dr. Bernardin Senadza, Dept. of Economics Contact Information: bsenadza@ug.edu.gh College of Education

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

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

Central limit theorems

Central limit theorems Chapter 6 Central limit theorems 6.1 Overview Recall that a random variable Z is said to have a standard normal distribution, denoted by N(0, 1), if it has a continuous distribution with density φ(z) =

More information

CHAPTERS 5 & 6: CONTINUOUS RANDOM VARIABLES

CHAPTERS 5 & 6: CONTINUOUS RANDOM VARIABLES CHAPTERS 5 & 6: CONTINUOUS RANDOM VARIABLES DISCRETE RANDOM VARIABLE: Variable can take on only certain specified values. There are gaps between possible data values. Values may be counting numbers or

More information

Week 13: Gaussian processes Option pricing Solutions

Week 13: Gaussian processes Option pricing Solutions Week 13: Gaussian processes Option pricing Solutions A Deriving (3) and (). Recall from (1) that Y t (s) was normally distributed with mean µs and variance σ 2 s, i.e., it is a Gaussian process. Immediately,

More information

Central Limit Theorem (CLT) RLS

Central Limit Theorem (CLT) RLS Central Limit Theorem (CLT) RLS Central Limit Theorem (CLT) Definition The sampling distribution of the sample mean is approximately normal with mean µ and standard deviation (of the sampling distribution

More information

Back to estimators...

Back to estimators... Back to estimators... So far, we have: Identified estimators for common parameters Discussed the sampling distributions of estimators Introduced ways to judge the goodness of an estimator (bias, MSE, etc.)

More information

Chapter 2: Random Variables (Cont d)

Chapter 2: Random Variables (Cont d) Chapter : Random Variables (Cont d) Section.4: The Variance of a Random Variable Problem (1): Suppose that the random variable X takes the values, 1, 4, and 6 with probability values 1/, 1/6, 1/, and 1/6,

More information

Definition 9.1 A point estimate is any function T (X 1,..., X n ) of a random sample. We often write an estimator of the parameter θ as ˆθ.

Definition 9.1 A point estimate is any function T (X 1,..., X n ) of a random sample. We often write an estimator of the parameter θ as ˆθ. 9 Point estimation 9.1 Rationale behind point estimation When sampling from a population described by a pdf f(x θ) or probability function P [X = x θ] knowledge of θ gives knowledge of the entire population.

More information

Continuous random variables

Continuous random variables Continuous random variables probability density function (f(x)) the probability distribution function of a continuous random variable (analogous to the probability mass function for a discrete random variable),

More information

6. Continous Distributions

6. Continous Distributions 6. Continous Distributions Chris Piech and Mehran Sahami May 17 So far, all random variables we have seen have been discrete. In all the cases we have seen in CS19 this meant that our RVs could only take

More information

Chapter ! Bell Shaped

Chapter ! Bell Shaped Chapter 6 6-1 Business Statistics: A First Course 5 th Edition Chapter 7 Continuous Probability Distributions Learning Objectives In this chapter, you learn:! To compute probabilities from the normal distribution!

More information

Statistics for Business and Economics: Random Variables:Continuous

Statistics for Business and Economics: Random Variables:Continuous Statistics for Business and Economics: Random Variables:Continuous STT 315: Section 107 Acknowledgement: I d like to thank Dr. Ashoke Sinha for allowing me to use and edit the slides. Murray Bourne (interactive

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

ECON 214 Elements of Statistics for Economists 2016/2017

ECON 214 Elements of Statistics for Economists 2016/2017 ECON 214 Elements of Statistics for Economists 2016/2017 Topic The Normal Distribution Lecturer: Dr. Bernardin Senadza, Dept. of Economics bsenadza@ug.edu.gh College of Education School of Continuing and

More information

Sampling Distribution

Sampling Distribution MAT 2379 (Spring 2012) Sampling Distribution Definition : Let X 1,..., X n be a collection of random variables. We say that they are identically distributed if they have a common distribution. Definition

More information

Lecture Slides. Elementary Statistics Tenth Edition. by Mario F. Triola. and the Triola Statistics Series. Slide 1

Lecture Slides. Elementary Statistics Tenth Edition. by Mario F. Triola. and the Triola Statistics Series. Slide 1 Lecture Slides Elementary Statistics Tenth Edition and the Triola Statistics Series by Mario F. Triola Slide 1 Chapter 6 Normal Probability Distributions 6-1 Overview 6-2 The Standard Normal Distribution

More information

Lecture Stat 302 Introduction to Probability - Slides 15

Lecture Stat 302 Introduction to Probability - Slides 15 Lecture Stat 30 Introduction to Probability - Slides 15 AD March 010 AD () March 010 1 / 18 Continuous Random Variable Let X a (real-valued) continuous r.v.. It is characterized by its pdf f : R! [0, )

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

The Normal Distribution

The Normal Distribution Will Monroe CS 09 The Normal Distribution Lecture Notes # July 9, 207 Based on a chapter by Chris Piech The single most important random variable type is the normal a.k.a. Gaussian) random variable, parametrized

More information

Welcome to Stat 410!

Welcome to Stat 410! Welcome to Stat 410! Personnel Instructor: Liang, Feng TA: Gan, Gary (Lingrui) Instructors/TAs from two other sessions Websites: Piazza and Compass Homework When, where and how to submit your homework

More information

Binomial Random Variables. Binomial Random Variables

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

More information

Chapter 4 Random Variables & Probability. Chapter 4.5, 6, 8 Probability Distributions for Continuous Random Variables

Chapter 4 Random Variables & Probability. Chapter 4.5, 6, 8 Probability Distributions for Continuous Random Variables Chapter 4.5, 6, 8 Probability for Continuous Random Variables Discrete vs. continuous random variables Examples of continuous distributions o Uniform o Exponential o Normal Recall: A random variable =

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

Probability and Statistics

Probability and Statistics Kristel Van Steen, PhD 2 Montefiore Institute - Systems and Modeling GIGA - Bioinformatics ULg kristel.vansteen@ulg.ac.be CHAPTER 3: PARAMETRIC FAMILIES OF UNIVARIATE DISTRIBUTIONS 1 Why do we need distributions?

More information

Statistics 251: Statistical Methods Sampling Distributions Module

Statistics 251: Statistical Methods Sampling Distributions Module Statistics 251: Statistical Methods Sampling Distributions Module 7 2018 Three Types of Distributions data distribution the distribution of a variable in a sample population distribution the probability

More information