Question

In: Math

A statistics instructor wonders whether significant differences exist in her students’ final exam scores in her...

A statistics instructor wonders whether significant differences exist in her students’ final exam scores in her three different sections. She randomly selects the scores from 10 students in each section. A portion of the data is shown in the accompanying table. Assume exam scores are normally distributed.

Section 1 Section 2 Section 3
82 50 72
76 51 79
63 59 96
90 76 86
61 74 54
79 50 86
56 73 78
59 63 83
79 84 95
89 78 95

Construct an ANOVA table. (Round "Sum Sq" and "Mean Sq" to 1 decimal place, "F value" to 3, and "p-value" to 3 decimal places. Before fitting your model, type options(scipen=10) and options(digits=10) into your R console.)

ANOVA
Source of Variation Df Sum Sq Mean Sq F value Pr(>F)
Section
Residuals

Solutions

Expert Solution

Solution:

We can use R to find the ANOVA values. The R code and output is given below:

R-Code:

options(scipen=10)
options(digits=10)
Section_1 <-c(82,76,63,90,61,79,56,59,79,89)
Section_2 <-c(50,51,59,76,74,50,73,63,84,78)
Section_3 <-c(72,79,96,86,54,86,78,83,95,95)
combined_groups<-data.frame(cbind(Section_1,Section_2,Section_3))
stacked_groups<-stack(combined_groups)
Anova_Results<-aov(values ~ind, data=stacked_groups)
summary(Anova_Results)

The R-output is given below:

Therefore, the ANOVA table is:


Related Solutions

An instructor hypothesizes that the variance of the final exam grades in her statistics class is...
An instructor hypothesizes that the variance of the final exam grades in her statistics class is larger for male students than it is for female students. The data from the final exam for the last semester are as shown. Is there enough evidence to support her claim, using a .01 level of significance?    Males females n1=16 s1-4.2 n2=18 s2=2.3 claim ………………………………................ ________________________ null hypothesis…………………………………. ________________________ alternative hypothesis………………………….. ________________________ Calculator Screen Name……………………… ________________________ test statistic ………………………… ________________________ pvalue/alpha comparison………………………. ________________________...
Below are the final exam scores of 20 Introductory Statistics students.
Below are the final exam scores of 20 Introductory Statistics students. Student 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Score 71 76 77 77 79 80 80 80 81 81 84 84 85 86 86 86 86 87 89 93 The mean exam score is 82.4 with a standard deviation of 5.14. 1. How many of the exam scores in the sample are within one standard deviation...
The following are final exam scores for 30 students in an elementary statistics class.
The following are final exam scores for 30 students in an elementary statistics class. 91            59            82            91            79            76            90            69            77            83 59            88            95            72            88            81            77            52            80            96 62            97            76            75            75            89            61            72            90            85 a.              Find the quartiles for this data______________________________. b.             What is the Interquartile Range (IQR)_________________________? c.              What percent of students got at least a 72 on their final exam______________? d.              Build a boxplot using the graphing calculator.
A sample of 10 students record their scores on the final exam for their statistics class....
A sample of 10 students record their scores on the final exam for their statistics class. The mean of the sample is 81 with sample standard deviation 7 points. Analysis of the 10 sample values indicated that the population is approximately normal. We wish to find the 95% confidence interval for the population mean test scores. 1. What is the confidence level, c? 2. Which of the following is correct? a. To find the confidence interval, a z-critical value should...
for a final exam in statistics , the mean of the exam scores is u= 75...
for a final exam in statistics , the mean of the exam scores is u= 75 with a standard deviation of o=8. what sample mean marks the top 10% of this distribution for a samples of n= 25 b) what sample means mark the boundaries of the middle 50% for samples of n= 50
An investigator collected data on midterm exam scores and final exam scores of elementary school students;...
An investigator collected data on midterm exam scores and final exam scores of elementary school students; results can summarized as follows. Average SD -------------------------------------------------- Boys' midterm score 70 20 Boys' final score 65 23 girls' midterm score 75 20 girls' final score 80 23 The correlation coefficient between midterm score and final score for the boys was about 0.70; for the girls, it was about the same. If you take the boys and the girls together, the correlation between midterm...
...Statistics students believe the mean grade on the first exam is 65. A statistics instructor thinks...
...Statistics students believe the mean grade on the first exam is 65. A statistics instructor thinks the mean grade is higher than 65. He samples ten statistics students and finds their mean grade is 67 with a standard deviation of 3.1972 for the sample. Use the Traditional Method and α = 0.05 to test the instructor’s claim. The data are assumed to be from a normal distribution. ... State the information given: State the claim in words: State the claim...
These are the scores of 40 students in MAT that took the Final Exam. Perform the...
These are the scores of 40 students in MAT that took the Final Exam. Perform the computations asked below with this set of data: 88 91 50 65 46 99 72 82 66 75 70 58 86 83 68 82 59 98 64 82 99 58 20 63 64 39 81 89 96 101 83 56 93 84 70 22 105 81 102 77 1. What is the class mean of the test scores? Round to the nearest whole number....
A statistics teacher believes that the final exam grades for her business statistics class have a...
A statistics teacher believes that the final exam grades for her business statistics class have a normal distribution with a mean of 82 and a standard deviation of 8. (1)Find the score which separates the top 10% of the scores from the lowest 90% of the scores. (2) The teacher plans to give all students who score in the top 10% of scores an A. Will a student who scored a 90 on the exam receive an A? Explain. (3)...
The final exam scores in a statistics class were normally distributed with a mean of 70...
The final exam scores in a statistics class were normally distributed with a mean of 70 and a standard deviation of five. What is the probability that a student scored less than 55% on the exam?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT