




Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Questionnaire on statistical problem
Typology: Exercises
1 / 8
This page cannot be seen from the preview
Don't miss anything!





Inference About Means and Proportions with Two Populations
Inferences About the Difference Between Two Population Means Based on Independent Samples: Sigma1 and Sigma2 Known
Inferences About the Difference Between Two Population Means: Sigma and Sigma
Unknown n2),0.5)
Inferences About the Difference Between Two Population Proportions
Inference About Population Variances
Sampling Distribution of (n-1)s2/ Sigma
90% confidence interval estimate of the population standard deviation: [CL_Lower0.5, CL_Upper0.5]=[0.47,0.84]
Hypothesis testing for H0: variance>=0.5, Ha: H0: variance<0. P_value=chi2.cdf((n-1)* sample_var/0.5,n-1) Print(P_value) P_value= 0. As P_value >0.05 so we accept null hypothesis and therefore we conclude that the population variance for the weight of this drug is greater than or equal to 0.
a. Investors commonly use the standard deviation of the monthly percentage return for a mutual fund as a measure of the risk for the fund; in such cases, a fund that has a larger standard deviation is considered more risky than a fund with a lower standard deviation. The standard deviation for the American Century Equity Growth fund and the standard deviation for the Fidelity Growth Discovery fund were recently reported to be 15.0% and 18.9%, respectively. Assume that each of these standard deviations is based on a sample of 60 months of returns. Do the sample results support the conclusion that the Fidelity fund has a larger population variance than the American Century fund? Which fund is more risky?
s1=0.15;s2=0.189;n1=60;n2=60;alpha=0.
H0: Sigma12>=Sigma2 Ha: Sigma12<Sigma2
F= s12/s2 print(F) F= 0.
P_value= f.cdf(F,n1-1,n2-1) print(P_value) P_value= 0.
For 95% confidence: As P_value<0.05 so we reject null hypothesis and we conclude that the standard deviation for the American Century Equity Growth fund is less than the standard deviation for the Fidelity Growth Discovery fund so American Century Equity Growth fund is less risky
For 99% confidence: As P_value>0.01 so we accept null hypothesis and we conclude that the standard deviation for the American Century Equity Growth fund is more than the standard deviation for the Fidelity Growth Discovery fund so American Century Equity Growth fund is more risky
Variance= 97. Count=
a. What is the 95% confidence interval for the population mean driving distance of each model, and what is the 95% confidence interval for the difference between the means of the two populations?
For current:
Since there 20 data values in the sample so degree of freedom is df=20-1= mean=270. standard deviation=8. t_critical = t.ppf(1-0.05/2,19)= 2. 95% confidence interval for current model: [270.28-2.098.76/pow(40,0.5),270.28+2.098.76/pow(40,0.5)]= [267.38, 273.17]
For new: Since there 20 data values in the sample so degree of freedom is df=20-1= mean=267. Standard deviation=9. t_critical = t.ppf(1-0.05/2,19)= 2. 95% confidence interval for new model: [267.50-2.099.9/pow(40,0.5),267.50+2.099.9/pow(40,0.5)]= [264.22, 270.77]
def se_for_two_means(s1,s2,n1,n2): return pow(s1s1/n1 +s2s2/n2,0.5) x1=270.28;s1=8.76;n1=40;x2=267.50;s2=9.90;n2=
SE=se_for_two_means(s1,s2,n1,n2) df= t=t.ppf(1-alpha/2,df)
MOE=t*SE
So required confidence interval is:- [x1-x2-MOE,x1-x2+MOE]= [-1.38, 6.94]
a. Do you see a need for larger sample sizes and more testing with the golf balls? Discuss
Yes, we need for larger sample sizes and more testing with the golf balls