Mathematics Homework Help
Baptist University of the Americas Statistics Questions
- a.Choose
n=10 random numbers from a Beta distribution witha=5 andb=10
b). Calculate the sample mean.
c. Repeat this process 1000 times and plot a histogram of sample means.
d.Now, repeat the steps from 1 to 3 for
2. (15 points) The following data set is a simulated data containing information on credit card balance of 10,000 customers. The data is pre-loaded in R. We are going to consider this data set as the population, i.e., small world.The “population” mean is calculated for you.
Balance=Credit$Balance
pop_mean=mean(Balance)
pop_mean
## [1] 520.015
- Take 1000 samples of size 30 and calculate the average of sample means,
X¯30 . Is this number closepop_mean
? - Take 1000 samples of size 50 and calculate the average of sample means,
X¯50 . Is this number closepop_mean
? - What does central Limit theorem telss us about the distribution of
X¯ in parts a and b?