Question

In: Statistics and Probability

To experimentally verify the central limit theorem, take 1000 random samples of size n=33 from a...

To experimentally verify the central limit theorem, take 1000 random samples of size n=33 from a population that is distributed exponentially with λ=3. To this end, you must show

  1. The histogram of the distribution is approximately normal.
  2. Its expected value is μ
  3. Its variance is sigma^2/33

Please complete in Rstudio

The center thickness (in mils) of a sample of twenty-five contact lenses are given below

0.3978             0.4019             0.4031             0.4044             0.3984             0.3972             0.3981

0.3947             0.4012             0.4043             0.4051             0.4016             0.3994             0.3999

0.4062             0.4048             0.4071             0.4015             0.3991             0.4021             0.4009

0.3988             0.3994             0.4016             0.4010

Solutions

Expert Solution

According to central limit theorem the sample mean of 1000 random samples of size n=33 will have a normal distrubution with mean = mean of the exponential distribution and variance = variance of exponential distribution /33

Now we know when X~ then E(X)=1/ and Var(X)=1/

Here which implies mean of the exponential distribution is 1/3 and variance of the exponential ditrubution is 1/9.

Therefore, according to CLT mean of the sample means would be 1/3 =0.3333

and variance of the sample means would be 1/(9*33) =0.003367

R codes:

meu=NULL
for(i in 1:1000)
{
   data=rexp(33,3)
   meu[i]=mean(data)
}
hist(meu,prob=T)

output:

So the histogram of the distribution is approximately bell shaped indicating it follows a normal distribution.

now for mean and variance

R code:

mean(meu)

result: 0.3331588

var(meu)
result : 0.003161583

Both the values matches with what we expect from the theory of CLT (Central limit theorem)



Related Solutions

For the population 5,6,7      take sample size 2 and apply central limit theorem and prove that...
For the population 5,6,7      take sample size 2 and apply central limit theorem and prove that mean of sample means is equal to population mean and standard deviation of sampling distribution of statistic is equal to population standard deviation divide by the square root of sample size.
In this problem, you are going to numerically verify that the Central Limit Theorem is valid...
In this problem, you are going to numerically verify that the Central Limit Theorem is valid even when sampling from non-normal distributions. Suppose that a component has a probability of failure described by a Weibull distribution. Let X be the random variable that denotes time until failure; its probability density is: f X(x; γ, k) = (k/γ)(x/γ)k−1 e −(x/γ)k , for x ≥ 0, and zero elsewhere. In this problem, assume k = 2, γ = 125 [hours]. a) Simulate...
For the population 2,3,4,5  take sample size 2 and apply central limit theorem and prove that mean...
For the population 2,3,4,5  take sample size 2 and apply central limit theorem and prove that mean of sample means is equal to population mean and standard deviation of sampling distribution of statistic is equal to population standard deviation divide by the square root of sample size.
This week we’ve introduced the central limit theorem. According to the central limit theorem, for all...
This week we’ve introduced the central limit theorem. According to the central limit theorem, for all samples of the same size n with n>30, the sampling distribution of x can be approximated by a normal distribution. In your initial post use your own words to explain what this theorem means. Then provide a quick example to explain how this theorem might apply in real life. At last, please share with us your thoughts about why this theorem is important.
A fair coin is tossed 1000 times. Use the Central Limit Theorem to approximate the probability...
A fair coin is tossed 1000 times. Use the Central Limit Theorem to approximate the probability that between 470 and 530 heads are obtained. How does this compare to Chebyshev’s bound?
Suppose a simple random sample of size n=1000 is obtained from a population whose size is...
Suppose a simple random sample of size n=1000 is obtained from a population whose size is N=2,000,000 and whose population proportion with a specified characteristic is p = 0.22 a. What is the probability of obtaining x=250 or more individuals with the​ characteristic?
Suppose a simple random sample of size n= 1000 is obtained from a population whose size...
Suppose a simple random sample of size n= 1000 is obtained from a population whose size is N=2,000,000 and whose population proportion with a specified characteristic is p= 0.65. (a) Describe the sampling distribution of (b) What is the probability of obtaining x= 690 or more individuals with the​ characteristic? (c) What is the probability of obtaining x = 620 or fewer individuals with the​ characteristic?
R Simulation: For n = 1000, simulate a random sample of size n from N(0,1). Use...
R Simulation: For n = 1000, simulate a random sample of size n from N(0,1). Use the generated data to give an approximation to the critical values when α = 0.01,0.05,0.1, and compare them with the theoretical values zα/2. Repeat with n = 10,000 to get a better approximation. Please use Commands quantile( ) or qnorm( ) or both.
It is said that the Central Limit Theorem is the most important theorem in all of...
It is said that the Central Limit Theorem is the most important theorem in all of Statistics. In your own words, describe why it is so important.
Suppose a simple random sample of size n equals=1000 is obtained from a population whose size...
Suppose a simple random sample of size n equals=1000 is obtained from a population whose size is N equals=1,000,000 and whose population proportion with a specified characteristic is p=0.74. ​(b) What is the probability of obtaining x=770 or more individuals with the​ characteristic? ​(c) What is the probability of obtaining x=720 or fewer individuals with the​ characteristic? ​(Round to four decimal places as​ needed.) How to solve these problems in Statcrunch? Thank you!
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT