Question

The weak law of large numbers states that the mean of a sample is a consistent...

The weak law of large numbers states that the mean of a sample is a consistent estimator of the mean of the population. That is, as we increase the sample size, the mean of the sample converges in probability to the expected value of the distribution that the data comes from, provided that expected value is finite. Consider a numerical example, a Student t distribution with n = 5, the same as we have already seen earlier in this module. As we increase the sample size, the sample mean converges to the expected value of the Student t distribution,

R code :

sampleSize<-2^seq(2, 20)
mean<-rep(0, length(sampleSize))
for(i in 1:length(sampleSize)) {
mean[i]<-mean(rt(sampleSize[i],5))
}
plot(log(sampleSize), mean)

Question 15: What is the expected value of the Student t distribution?

The law of large numbers only applies if the distribution that the data comes from has a finite expected value. In the previous section of this module, we saw a distribution with an infinite variance. There are distributions with infinite or undefined expected values as well. lim | | 1 ( n ) n P Y q e ®¥ - < = Here is an the same example with a Cauchy distribution instead of Student t distribution:

sampleSize<-2^seq(2, 20)
mean<-rep(0, length(sampleSize))
for(i in 1:length(sampleSize)) {
mean[i]<-mean(rcauchy(sampleSize[i], 0, 1))
}
plot(log(sampleSize), mean)

There is no convergence.

Question 16: As you see from the above, the weak law of large numbers doesn't apply to random variables obtained from a Couchy distribution. Does the central limit theorem (it's most common version) apply to i.i.d. variables that have the Couchy distribution? - yes - no

Homework Answers

Answer #1

15) If the degrees of freedom of the t-distribution is greater than 1, then the mean is 0. Otherwise, for degrees of freedom equal to 1, the mean is undefined.

16) No it doesn't apply to Cauchy distribution. First of all the mean and variance of a Cauchy distribution are undefined. Recall in CLT that given iid random variables , with mean and a finite variance then:

        

And we have that:                  

But, for the Cauchy distribution, neither of the two parameters exist.

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Apply Chebychev's inequality to prove the Weak Law of Large Numbers for the sample mean of...
Apply Chebychev's inequality to prove the Weak Law of Large Numbers for the sample mean of i.i.d. random variables with a finite variance.
In plain terms, the Weak Law of Large Numbers states that as the number of experiments...
In plain terms, the Weak Law of Large Numbers states that as the number of experiments approaches infinity, the difference between the sample mean and the distribution mean can be as small as possible. - TRUE - FALSE
Benford's Law states that the first nonzero digits of numbers drawn at random from a large...
Benford's Law states that the first nonzero digits of numbers drawn at random from a large complex data file have the following probability distribution.† First Nonzero Digit 1 2 3 4 5 6 7 8 9 Probability 0.301 0.176 0.125 0.097 0.079 0.067 0.058 0.051 0.046 Suppose that n = 275 numerical entries were drawn at random from a large accounting file of a major corporation. The first nonzero digits were recorded for the sample. First Nonzero Digit 1 2...
Recall that Benford's Law claims that numbers chosen from very large data files tend to have...
Recall that Benford's Law claims that numbers chosen from very large data files tend to have "1" as the first nonzero digit disproportionately often. In fact, research has shown that if you randomly draw a number from a very large data file, the probability of getting a number with "1" as the leading digit is about 0.301. Now suppose you are an auditor for a very large corporation. The revenue report involves millions of numbers in a large computer file....
Recall that Benford's Law claims that numbers chosen from very large data files tend to have...
Recall that Benford's Law claims that numbers chosen from very large data files tend to have "1" as the first nonzero digit disproportionately often. In fact, research has shown that if you randomly draw a number from a very large data file, the probability of getting a number with "1" as the leading digit is about 0.301. Now suppose you are an auditor for a very large corporation. The revenue report involves millions of numbers in a large computer file....
i.Bias of Sample Mean Draw 20 samples from the normal distribution N(5, 4). Compute the mean...
i.Bias of Sample Mean Draw 20 samples from the normal distribution N(5, 4). Compute the mean of your 20 samples. Report the bias of the sample mean ii. Variance of Sample Mean (Continue of problem i) To estimate the variance of the sample mean, we need to draw many different samples of size 20. Now, we draw 1000 times a sample of size 20. Store all the 1000 sample means. Report the variance of the estimated sample mean. Hint: To...
Recall that Benford's Law claims that numbers chosen from very large data files tend to have...
Recall that Benford's Law claims that numbers chosen from very large data files tend to have "1" as the first nonzero digit disproportionately often. In fact, research has shown that if you randomly draw a number from a very large data file, the probability of getting a number with "1" as the leading digit is about 0.301. Now suppose you are an auditor for a very large corporation. The revenue report involves millions of numbers in a large computer file....
Recall that Benford's Law claims that numbers chosen from very large data files tend to have...
Recall that Benford's Law claims that numbers chosen from very large data files tend to have "1" as the first nonzero digit disproportionately often. In fact, research has shown that if you randomly draw a number from a very large data file, the probability of getting a number with "1" as the leading digit is about 0.301. Now suppose you are the auditor for a very large corporation. The revenue file contains millions of numbers in a large computer data...
Recall that Benford's Law claims that numbers chosen from very large data files tend to have...
Recall that Benford's Law claims that numbers chosen from very large data files tend to have "1" as the first nonzero digit disproportionately often. In fact, research has shown that if you randomly draw a number from a very large data file, the probability of getting a number with "1" as the leading digit is about 0.301. Now suppose you are an auditor for a very large corporation. The revenue report involves millions of numbers in a large computer file....
Recall that Benford's Law claims that numbers chosen from very large data files tend to have...
Recall that Benford's Law claims that numbers chosen from very large data files tend to have "1" as the first nonzero digit disproportionately often. In fact, research has shown that if you randomly draw a number from a very large data file, the probability of getting a number with "1" as the leading digit is about 0.301. Now suppose you are an auditor for a very large corporation. The revenue report involves millions of numbers in a large computer file....
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT