1.) MTBE

2.)

3.) Given:


8.)

we know that

[Graph of f(y) from 0 to 2]

9.)

10.)

11.) Guessed.

12.) Birthday Problem

Thus birthday(20) = .4114


4.)

epagas <- read.csv("EFMEHS.csv")
z_epagas <- (epagas$MPG - mean(epagas$MPG)) / sd(epagas$MPG)
 
outlier_epagas <- subset(epagas, abs(z_epagas) >= 2 & abs(z_epagas) <= 3)
 
min(outlier_epagas)
# [1] 300

5.) Given Standard Deviation is 3.

[Drawing of a normal distribution bell curve]

6.)

[Drawing of L and U on a normal distribution] To find U: U = \text{mean}(\text{epagas} \ \text{MPG})+ \text{sd}(\text{epagas} $ \text{MPG})= 39.4119$

7.)