ANOVA

Problems Involving ANOVA

Problem Overview

  • Context: A researcher wants to test if different teaching methods affect student test scores.

  • Teaching Methods:

    • Traditional

    • Online

    • Hybrid

  • Data Sources:

    • Traditional Scores: 85, 88, 90, 93, 87

    • Mean ($x_1$): 88.6

    • Sum of Scores ($ ext{xi}$): 443

    • Online Scores: 78, 82, 85, 79, 81

    • Mean ($x_2$): 81

    • Sum of Scores ($ ext{xi}$): 405

    • Hybrid Scores: 90, 92, 94, 89, 91

    • Mean ($x_3$): 91.2

    • Sum of Scores ($ ext{xi}$): 456

Step-by-Step ANOVA Procedure

Step 1: Identify the Type of Test
  • Test Used: One-Way ANOVA

Step 2: State the Hypotheses
  • Null Hypothesis ($H_0$): There is no difference in mean test scores across the teaching methods.

  • Alternative Hypothesis ($H_1$): At least one teaching method has a significantly different mean score.

Step 3: Calculate ANOVA/F-ratio
F-ratio Formula
  • F=MSBMSWF = \frac{MSB}{MSW}

Calculating Mean Square Values
  1. Mean Square Between Groups (MSB):

    • Formula: MSB=SSBk1MSB = \frac{SSB}{k-1}

    • Where:

      • SSB = Between-Group Sum of Squares

      • $k$ = number of groups

  2. Mean Square Within Groups (MSW):

    • Formula: MSW=SSWNkMSW = \frac{SSW}{N-k}

    • Where:

      • SSW = Within-Group Sum of Squares

      • $N$ = total number of observations

Between-Group Sum of Squares (SSB)
  • Formula: SSB=(n<em>i(xˉ</em>ixˉ)2SSB = \sum(n<em>i (\bar{x}</em>i - \bar{x})^2

  • Where:

    • $n_i$: number of observations in each group

    • $\bar{x}_i$: mean of each group

    • $\bar{x}$: overall mean

  • Calculation:

    • Overall Mean ($\bar{x}$): xˉ=443+405+45615<br>ightarrowxˉ=88.8\bar{x} = \frac{443 + 405 + 456}{15} <br>ightarrow \bar{x} = 88.8

    • SSB=5(88.688.8)2+5(8188.8)2+5(91.288.8)2SSB = 5(88.6 - 88.8)^2 + 5(81 - 88.8)^2 + 5(91.2 - 88.8)^2

    • Calculation:

    • SSB=5(0.2)2+5(7.8)2+5(2.4)2SSB = 5(-0.2)^2 + 5(-7.8)^2 + 5(2.4)^2

    • =5(0.04)+5(60.84)+5(5.76)= 5(0.04) + 5(60.84) + 5(5.76)

    • =0.2+304.2+28.8=333.2= 0.2 + 304.2 + 28.8 = 333.2

  • Final Calculation of SSB:

    • SSB value presented in transcript: SSB=280.9335SSB = 280.9335 (Note that there are corrections needed)

Within-Group Sum of Squares (SSW)
  • Formula: SSW=(x<em>ijxˉ</em>i)2SSW = \sum{(x<em>{ij} - \bar{x}</em>i)^2}

  • Detailed calculations for each group:

    • Traditional Group:

    • For each score, calculate (x<em>ijxˉ</em>1)2(x<em>{ij} - \bar{x}</em>1)^2

    • 85: (8588.6)2=12.96(85 - 88.6)^2 = 12.96

    • 88: (8888.6)2=0.36(88 - 88.6)^2 = 0.36

    • 90: (9088.6)2=1.96(90 - 88.6)^2 = 1.96

    • 93: (9388.6)2=19.36(93 - 88.6)^2 = 19.36

    • 87: (8788.6)2=2.56(87 - 88.6)^2 = 2.56

    • Sum for Traditional: (12.96+0.36+1.96+19.36+2.56)=37.2(12.96 + 0.36 + 1.96 + 19.36 + 2.56) = 37.2

    • Online Group:

    • 78: (7881)2=9(78 - 81)^2 = 9

    • 82: (8281)2=1(82 - 81)^2 = 1

    • 85: (8581)2=16(85 - 81)^2 = 16

    • 79: (7981)2=4(79 - 81)^2 = 4

    • 81: (8181)2=0(81 - 81)^2 = 0

    • Sum for Online: (9+1+16+4+0)=30(9 + 1 + 16 + 4 + 0) = 30

    • Hybrid Group:

    • 90: (9091.2)2=1.44(90 - 91.2)^2 = 1.44

    • 92: (9291.2)2=0.64(92 - 91.2)^2 = 0.64

    • 94: (9491.2)2=7.84(94 - 91.2)^2 = 7.84

    • 89: (8991.2)2=4.84(89 - 91.2)^2 = 4.84

    • 91: (9191.2)2=0.04(91 - 91.2)^2 = 0.04

    • Sum for Hybrid: (1.44+0.64+7.84+4.84+0.04)=14.8(1.44 + 0.64 + 7.84 + 4.84 + 0.04) = 14.8

  • Total SSW:

    • SSW=37.2+30+14.8=82.0SSW = 37.2 + 30 + 14.8 = 82.0

Mean Square Values Calculation
  • Calculating MSB:

    • MSB=SSBk1=280.93352=140.46675MSB = \frac{SSB}{k-1} = \frac{280.9335}{2} = 140.46675

  • Calculating MSW:

    • MSW=SSWNk=8212=6.8333MSW = \frac{SSW}{N-k} = \frac{82}{12} = 6.8333

Final Calculation of F-ratio
  • F=MSBMSW=140.466756.8333=20.5562F = \frac{MSB}{MSW} = \frac{140.46675}{6.8333} = 20.5562

Step 4: Determine the Degrees of Freedom
  • Degrees of Freedom Between Groups ($df_{between}$):

    • Formula: dfbetween=k1=31=2df_{between} = k-1 = 3-1 = 2

  • Degrees of Freedom Within Groups ($df_{within}$):

    • Formula: dfwithin=Nk=153=12df_{within} = N-k = 15-3 = 12

Step 5: Determine the Critical Value of F
  • Critical Value:

    • Given Fcritical=3.89F_{critical} = 3.89

Step 6: Compare and Make a Decision
  • Comparison:

    • If F{critical} < F{ratio} then reject $H_0$

    • Here, 3.89 < 20.5562

  • Decision:

    • Reject $H_0$

Step 7: Interpret the Results
  • Conclusion:

    • There is significant evidence to conclude that at least one teaching method has a different effect on student test scores.

Key Formulas and Concepts Summary

  • F-ratio: F=MSBMSWF = \frac{MSB}{MSW}

  • Degrees of Freedom:

    • Between Groups: dfbetween=k1df_{between} = k-1

    • Within Groups: dfwithin=Nkdf_{within} = N-k

  • Sum of Squares:

    • Between Groups: SSB=(n<em>i(xˉ</em>ixˉ)2SSB = \sum(n<em>i (\bar{x}</em>i - \bar{x})^2

    • Within Groups: SSW=(x<em>ijxˉ</em>i)2SSW = \sum{(x<em>{ij} - \bar{x}</em>i)^2}

  • Decision Criteria:

    • Reject the null hypothesis if F{critical} < F{ratio}

Notes

  • Ensure that calculations regarding SSB and SSW are double-checked for accuracy in the context of their respective groups.

  • When interpreting results, emphasize both statistical significance and potential educational implications of findings.