This is a Statistics problem. Is the sample mean from the Poisson distribution normally distributed?
This is a Statistics problem. Is the sample mean from the Poisson distribution normally distributed?
MATLAB: An Introduction with Applications
6th Edition
ISBN:9781119256830
Author:Amos Gilat
Publisher:Amos Gilat
Chapter1: Starting With Matlab
Section: Chapter Questions
Problem 1P
Related questions
Question
100%
This is a Statistics problem.
Is the sample
![Example 5.21
Let X1,..., X30 be independent Poisson random variables with rate 2. From our knowledge of the
Poisson distribution, each X, has mean u = 2 and standard deviation o = v2. Assuming n = 30 is
a large enough sample size, the Central Limit Theorem says that
X – 2
Z =
V2/V30
will be approximately normal with mean 0 and standard deviation 1. Let us check this with a
simulation.
This is a little bit more complicated than our previous examples, but the idea is still the same. We
create an experiment which computes X and then transforms it by subtracting 2 and dividing by
V2/V30.
Here is a single experiment:
Xbar <- mean (rpois (30, 2))
(Xbar - 2) / (sgrt(2) / sgrt(30))
## [1] 0.1290994
Now, we replicate and plot:
z <- replicate(10000, {
Xbar <- mean ( rpois (30, 2))
(Xbar - 2) / (sqrt (2) / sqrt(30))
})
plot(density(Z),
main = "Standardized sum of 30 Poisson rvs", xlab = "Z"
curve(dnorm(x), add = TRUE, col = "red")
Standardized sum of 30 Poisson rvs
Figure 5.4: Standardized sum of 30 Poisson random variables compared to a standard normal rv.
In Figure 5.4 we see very close agreement between the simulated density of Z and the standard
normal density curve.
Density
0.0 0.1 0.2 0.3 0.4
TIT](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fcb9da028-c1e8-4fb4-9df2-7f4287e8030e%2F082955f4-7abc-4bfd-83eb-b166e58a0284%2Fkdraudsg_processed.png&w=3840&q=75)
Transcribed Image Text:Example 5.21
Let X1,..., X30 be independent Poisson random variables with rate 2. From our knowledge of the
Poisson distribution, each X, has mean u = 2 and standard deviation o = v2. Assuming n = 30 is
a large enough sample size, the Central Limit Theorem says that
X – 2
Z =
V2/V30
will be approximately normal with mean 0 and standard deviation 1. Let us check this with a
simulation.
This is a little bit more complicated than our previous examples, but the idea is still the same. We
create an experiment which computes X and then transforms it by subtracting 2 and dividing by
V2/V30.
Here is a single experiment:
Xbar <- mean (rpois (30, 2))
(Xbar - 2) / (sgrt(2) / sgrt(30))
## [1] 0.1290994
Now, we replicate and plot:
z <- replicate(10000, {
Xbar <- mean ( rpois (30, 2))
(Xbar - 2) / (sqrt (2) / sqrt(30))
})
plot(density(Z),
main = "Standardized sum of 30 Poisson rvs", xlab = "Z"
curve(dnorm(x), add = TRUE, col = "red")
Standardized sum of 30 Poisson rvs
Figure 5.4: Standardized sum of 30 Poisson random variables compared to a standard normal rv.
In Figure 5.4 we see very close agreement between the simulated density of Z and the standard
normal density curve.
Density
0.0 0.1 0.2 0.3 0.4
TIT
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps

Recommended textbooks for you

MATLAB: An Introduction with Applications
Statistics
ISBN:
9781119256830
Author:
Amos Gilat
Publisher:
John Wiley & Sons Inc

Probability and Statistics for Engineering and th…
Statistics
ISBN:
9781305251809
Author:
Jay L. Devore
Publisher:
Cengage Learning

Statistics for The Behavioral Sciences (MindTap C…
Statistics
ISBN:
9781305504912
Author:
Frederick J Gravetter, Larry B. Wallnau
Publisher:
Cengage Learning

MATLAB: An Introduction with Applications
Statistics
ISBN:
9781119256830
Author:
Amos Gilat
Publisher:
John Wiley & Sons Inc

Probability and Statistics for Engineering and th…
Statistics
ISBN:
9781305251809
Author:
Jay L. Devore
Publisher:
Cengage Learning

Statistics for The Behavioral Sciences (MindTap C…
Statistics
ISBN:
9781305504912
Author:
Frederick J Gravetter, Larry B. Wallnau
Publisher:
Cengage Learning

Elementary Statistics: Picturing the World (7th E…
Statistics
ISBN:
9780134683416
Author:
Ron Larson, Betsy Farber
Publisher:
PEARSON

The Basic Practice of Statistics
Statistics
ISBN:
9781319042578
Author:
David S. Moore, William I. Notz, Michael A. Fligner
Publisher:
W. H. Freeman

Introduction to the Practice of Statistics
Statistics
ISBN:
9781319013387
Author:
David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:
W. H. Freeman