Tom K. answered 04/25/21
Knowledgeable and Friendly Math and Statistics Tutor
F.05(4,6) = .162255
F.95(4,6) = 4.533677
Thus, as s1^2/s2^2 =0.063655, the 90% confidence interval is 0.063655/4.533677 <= sigma1^2/sigma2^2 <= 0.063655/4.533677, or 0.016246 <= sigma1^2/sigma2^2 <= .453948
Looking at the data, I have a hard time believing that 175 would not be considered an outlier.
In R, if we run
A <- c(103, 94, 110, 87, 98)
B <- c(97, 82, 123, 92, 175, 88, 118)
z <- t.test(A,B,conf.level=.9)
z$parameter
we get a confidence interval for A-B = ( -36.42670 , 11.79813)
The Welch test, a test used with unequal variances, is used for the analysis.