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. 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: Function Description Syntax normrnd random numbers N(µ, σ) normrnd(mu,sigma,m,n) randn random numbers N(0, 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) where m and n, are respectively the numbers of rows and columns generated. 1. 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, σ > 0 y µ R. 1. Create a function in MATLAB/Octave which returns the values of the density function of a r.v. distributed as N (µ, σ). %% create the function fd_normal.m function y = fd_normal(x, mu, sigma) for i=1:length(x) y(i) = exp(-0.5*((x(i)-mu)/sigma)^2) / (sigma*sqrt(2*pi)); end %% Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 1

2 2. Use the function created in previous exercise to represent graphically the Normal r.v., for different values of the parameters of the distribution: a) Fix σ and change µ Consider 3 Normal distributions with constant standard deviation (σ = 1) and different means (µ =-1,0,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 (µ = 0) and different standard deviation (σ =0.3,0.5,1.2). Analyze the shape and the position of the distribution in terms of model parameters. % a) >> x = -5:0.01:5; >> y1 = fd_normal(x,-1,1); % y1 is Normal with mean -1 and s.d. 1 >> y2 = fd_normal(x, 0,1); % y2 is Normal with mean 0 and s.d. 1 >> y3 = fd_normal(x, 1,1); % y2 is Normal with mean +1 and s.d. 1 % b) >> y4 = fd_normal(x, 0, 0.3); % y4 is Normal with mean 0 and s.d. 0.3 >> y5 = fd_normal(x, 0, 0.5); % y5 is Normal with mean 0 and s.d. 0.5 >> y6 = fd_normal(x, 0, 1.2); % y6 is Normal with mean 0 and s.d. 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. % 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 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 Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 2

3 % 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 = 0,sigma = 0.3 mu = 0, sigma = 1 mu = 0, sigma = mu = 1, sigma = mu = 0,sigma = Note: Another alternative way to represent the graph for a Normal distribution (µ = 0 y σ = 2,5) for x ( 10, 10) may be: >> fplot( fd_normal(x, 0, 2.5), [-10 10], g ) 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 a Normal distribution. 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 µ = 0 and standard deviation σ = 1). From randn, it is also possible to generate random numbers N (µ, σ). Let Z N (0, 1), we can obtain X N (µ, σ), given that: X = Z σ + µ Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 3

4 >> z= randn(m,n); >> x= z*sigma + mu; We can check that the generated numbers are normally distributed by N (µ, σ) by its histogram: >> m=1000; n=1; >> sigma=0.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. >> x = [-3:0.01:3]; >> mu=0; sigma=1; >> p = normcdf(x,mu,sigma); % p = normcdf(x) gives % the CDF of a % N(0,1) % Its inverse is x = norminv(p,mu,sigma) >> plot(x,p) >> grid on Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 4

5 2. 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 = 0, 1,..., n y 0 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) = + Properties of Gamma function (Γ): a) Γ(1) = 0! = 1 0 e x x p 1 dx, where p > 0 b) Γ(p) = (p 1)Γ(p 1), p > 0 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 %% Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 5

6 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,0.2), Bin(10,0.2), Bin(20,0.2) b) Fix n and change p create 3 Binomials: Bin(100,0.1), Bin(100,0.5), Bin(100,0.8) % Case a): >> x5=0:5 % create a sequence between 0 and 5 >> y5=fp_binomial(x5,5,0.2) % call to fp_binomial.m >> sum(y5) % check if sum is =1 >> x10=0:10; >> y10=fp_binomial(x10,10,0.2); >> x20=0:20; >> y20=fp_binomial(x20,20,0.2); % Caso b): >> x100 = 0:100; >> y1 = fp_binomialn(x100, 100, 0.1); % call to >> y2 = fp_binomialn(x100, 100, 0.5); % fp_binomialn.m >> y3 = fp_binomialn(x100, 100, 0.8); We can compare both graphs: Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 6

7 >> subplot(1,2,1) >> plot(x5,y5,., x10,y10, +, x20, y20, * ); >> legend( n=5, p=0.2, n=10, p=0.2, n=20, p=0.2 ) >> subplot(1,2,2) >> plot(x100, y1,., x100, y2, +, x100, y3, * ); >> legend( n = 100, p = 0.1, n = 100, p = 0.5, n = 100, p = 0.8 ); n=5, p=0.2 n=10, p=0.2 n=20, p= n = 100, p = 0.1 n = 100, p = 0.5 n = 100, p = 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. %% 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: Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 7

8 % Obtain 10 binomial numbers from the sum of the n o % of successes from n trials with probability of success p >> y = na_binomial(10,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=100; p=0.1; >> y = na_binomial(10,n,p) >> mean(y) % aprox. 10 >> var(y) % aprox Generation of random variables As noted in previous practical, the inverse transform method allow us to generate continuous random variables from its distribution function if it admits inverse. Weibull distribution: Let X be a Weibull 2 random variable, such that X Weibull(α, β), with distribution function: { 0 x > 0 F X (x) = 1 e (x/β)α 0 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 α 2 NOTA: this distribution is very common in reliability, for instance, to study the lifetimes of components untill it fails. Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 8

9 And therefore: >> u = rand(n,1); >> x = beta*(-log(1-u))^(1/alpha); 3. Q function The Q function is defined as the complement of the distribution function of a standard normal N (0, 1), i.e. as: Q(x) = P (X > x) with X N (0, 1) Suppose a Q function with upper bounds (cs1) and (cs2) and lower bound (ci) given by Q(x) 1 x2 e 2 x 0 (cs1) 2 Q(x) < 1 e x2 2 x > 0 (cs2) 2πx Q(x) > 1 ( 1 1 ) 2πx x 2 e x2 2 para todo x > 1 (ci) 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,0,1) b) Write a MATLAB/Octave s code to represent graphically the Q function in the interval (0, 5] with upper bounds cs1 and cs2 and lower bounds ci. The obtained result must be similar to figure 1. Note: Represent x (0, 5] as x=[0.01:0.01:5]. For the lower bound ci, observe that there is a vertical asymptote in x = 1, therefore, define xi=[1.01:0.01:5] only for this bound. Use logarithmic scale to represent the bounds. Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 9

10 >>x1= [1.01:0.01:5]; >>for i=1:length(x1) ci(i) = (1/x1(i)*sqrt(2*pi))*(1- (1/x1(i)^2))*exp(-0.5*x1(i)^2); end >>x = [0.01:0.01:5]; >>for i=1:length(x) cs1(i)=0.5*exp(-0.5*x(i)^2); cs2(i)=(1/(x(i)*sqrt(2*pi))) * exp(-0.5*x(i)^2); end >>q = 1- normcdf(x,0,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 10 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 asymptte in x = Exercises of interest 1. Given Y distributed as Cauchy, which can be obtained as Y = tg (X) with X as U ( π 2, π 2 ), how would you use this information to generate a Cauchy? Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 10

11 If it is knows that there is no need to apply the inverse transform method, we can simply: >> x=unifrnd(-pi/2,pi/2, 100,1); % generate uniforms in the interval % (-pi/2,pi/2) >> y=tan(x); % apply tangent 2. Let be X N (0, σ = 3). If a circle with radius x of the defined random variable. Compute in terms of the Q function the probability that the generated circle has a greater or equal area to π. Evaluate the probability with MATLAB/Octave analitically and by simulation. Let C be a r.v. area of the circle, we have to compute P (C π) = P ( πx 2 π ) = P ( X 2 1 ) = P (X 1) + P (X 1) ( X 0 = P 1 0 ) ( X 0 + P 1 0 ) ( ) 1 = 2Q to evaluate the result in MATLAB/Octave: >> x=2*(1-normcdf(1/3)) by simulation: >> x=normrnd(0,3,1000,1); >> area=pi*x.>2; >> c=(area>=pi); >> prob=sum(c)/ Let X be a r.v. hours dedicated to perform an activity, with density function f (x) = { 1 4 (x + 1) 0 < x < 2 0 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 10 activities are performed following a r.v. X, calculate analitically and using MATLAB/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. Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 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 = = = = 0,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: 0 x < 0 x 1 F (x) = 0 4 (y + 1) dy = 1 8 x x 0 x < x and the inverse: 1 8 x x = u x 2 + 2x 8u = 0 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 (0, 1) x = u 2 The MATLAB/Octave s code is: >> u=rand(1000,1); >> x=(-2+sqrt(4+32*u))/2; >> prob=sum(x>1.5)/ b) Analitically, if the random variable Y is defined as number of activities among the 10 in which the employed time is more than one hour and a half, we have Y Bin ( n = 10, p = 11 32) and calculate P (Y = 3) = ( 10 3 ) ( ) 3 ( ) 21 7 = 0, Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 12

13 The MATLAB/Octave s code is: >> u=rand(1000,10); >> x=(-2+sqrt(4+32*u))/2; >> conta=(x>1.5); >> suma=sum(conta,2); >> prob=sum(suma==3)/ Ex. FEB 2004 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 0, 5. If the binary channel transmits a 2, the receptor recieves a Normal r.v. with mean 2 and variance 0, 5. Let P (1) be the probability if transmiting a 1. a) Given P (1) = 0, 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 ) = 0,75, R T 1 N(1, 0,5) T 2 = transmit 2, P (T 2 ) = 0,25, R T 2 N(2, 0,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 0,5 and Z 2 = R T 2 2 0,5, P (Z 1 > 1,41) 0,75 P (T 1 R > 2) = P (Z 1 > 1,41) 0,75 + P (Z 2 > 0) 0,25 0,0793 0,75 = 0,0793 0,75 + 0,5 0,25 = 0,3224 In MATLAB/Octave, it is possible to approximate the probability by: >> n=10000; >> u=rand(n,1); % simulate n random trials >> p=0.75; % is the probability to transmit a 1 % message transmition in the channel >> t=1*(u<=p)+2*(u>p); % message reception >> r=(t==1).*normrnd(1,sqrt(0.5),n,1)+(t==2).*normrnd(2,sqrt(0.5),n,1); >> r=2*(r>2)+1*(r<=2); Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 13

14 % create a crosstable with transmited/received >> a=crosstab(t,r) >> a = % a(1,1) a(1,2) % a(2,1) a(2,2) % to calculate the probability P(t==1 r>2), we calculate >> a(1,2)/(a(1,2)+a(2,2)) Ex. SEP 2007 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 α > 0. a) Suppose a box with 60 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) 0,05 0,95 0,025 0, b) Comment next MATLAB s code, what it the approximate value of prob. >> u=rand(60,1000); >> w=0.25*(-log(1-u)).^(1/0.5); >> s=sum(w); >> prob=sum(s<47)/1000 Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 14

15 a) Let T i a r.v. of time until i th sensor fails, calculate: P ( 60 ) T i 47 i=1 Given that the r.v. s T i verify Central Limit Theorem conditions, we have (60 12 ), if we standardize P ( Z < P ( 60 i=1 T i i=1 ) T i N = P i=1 T i < ) = P (Z < 1, 96) = 1 Q (1, 96) = 1 0, 025 = 0, , 66 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 matrix with random numbers U (0, 1). In second line, we generate a 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 60 sensors. Finally, fourth line checks how many times out of 1000, 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 0, Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 15

16 5. Proposed exercises NOTE: These exercises are not part of the compulsory assignment. Their resolution is recommended for gaining a better understanding of the concepts introduced in this Lab Session. 1. Indicate MATLAB/Octave s code to solve the problem proposed in: Ex. SEP 2005 Ing. Téc. Tel. C3b (link). 2. Indicate MATLAB/Octave s code to solve the problem proposed in: Ex. JUN 2002 Ing. Inf. (P1b) (link). 3. Indicate MATLAB/Octave s code to solve the problem proposed in: Ex. SEP 2007 Ing. Téc. Tel. (C4a y C4b). (link). Telecommunications Engineering - Estadística ( ), LAB 3. PROBABILITY MODELS 16

TELECOMMUNICATIONS ENGINEERING

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Sampling & populations

Sampling & populations Sampling & populations Sample proportions Sampling distribution - small populations Sampling distribution - large populations Sampling distribution - normal distribution approximation Mean & variance of

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

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

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

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

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

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

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

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

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

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

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

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

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

1 Residual life for gamma and Weibull distributions

1 Residual life for gamma and Weibull distributions Supplement to Tail Estimation for Window Censored Processes Residual life for gamma and Weibull distributions. Gamma distribution Let Γ(k, x = x yk e y dy be the upper incomplete gamma function, and let

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

Metropolis-Hastings algorithm

Metropolis-Hastings algorithm Metropolis-Hastings algorithm Dr. Jarad Niemi STAT 544 - Iowa State University March 27, 2018 Jarad Niemi (STAT544@ISU) Metropolis-Hastings March 27, 2018 1 / 32 Outline Metropolis-Hastings algorithm Independence

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

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

Likelihood Methods of Inference. Toss coin 6 times and get Heads twice.

Likelihood Methods of Inference. Toss coin 6 times and get Heads twice. Methods of Inference Toss coin 6 times and get Heads twice. p is probability of getting H. Probability of getting exactly 2 heads is 15p 2 (1 p) 4 This function of p, is likelihood function. Definition:

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

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

INDIAN INSTITUTE OF SCIENCE STOCHASTIC HYDROLOGY. Lecture -26 Course Instructor : Prof. P. P. MUJUMDAR Department of Civil Engg., IISc. INDIAN INSTITUTE OF SCIENCE STOCHASTIC HYDROLOGY Lecture -26 Course Instructor : Prof. P. P. MUJUMDAR Department of Civil Engg., IISc. Summary of the previous lecture Hydrologic data series for frequency

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

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

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

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

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

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

ELEMENTS OF MONTE CARLO SIMULATION

ELEMENTS OF MONTE CARLO SIMULATION APPENDIX B ELEMENTS OF MONTE CARLO SIMULATION B. GENERAL CONCEPT The basic idea of Monte Carlo simulation is to create a series of experimental samples using a random number sequence. According to the

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

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

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

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

Lean Six Sigma: Training/Certification Books and Resources

Lean Six Sigma: Training/Certification Books and Resources Lean Si Sigma Training/Certification Books and Resources Samples from MINITAB BOOK Quality and Si Sigma Tools using MINITAB Statistical Software A complete Guide to Si Sigma DMAIC Tools using MINITAB Prof.

More information

Model Paper Statistics Objective. Paper Code Time Allowed: 20 minutes

Model Paper Statistics Objective. Paper Code Time Allowed: 20 minutes Model Paper Statistics Objective Intermediate Part I (11 th Class) Examination Session 2012-2013 and onward Total marks: 17 Paper Code Time Allowed: 20 minutes Note:- You have four choices for each objective

More information