

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
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
The solutions to quiz #1 for the stat 3502/4612 spring 2005 course. The quiz covers topics such as calculating the median, mode, range, interquartile range, and identifying outliers for a given dataset. It also includes problems on probability theory, specifically finding the probability of two independent events occurring and approximating binomial distributions using normal distributions.
Typology: Quizzes
1 / 2
This page cannot be seen from the preview
Don't miss anything!
Stat 3502/4612 Spring 2005 Jaimie Kwon Name____________________
Stat 3502/4612 Spring 2005 Jaimie Kwon Name____________________
(All answers are approximate since no numerical clues are provided) a. median is 4.0. Two modes are at near 1.9 and 4. b. the range is ~5.1 – 1.6 = 3. c. the IQR is ~ 4.4 - 2.2 = 2. d. No outliers e. Right inner fence is Q3+1.5IQR = 4.4 + 1.52.2 = 4.4 + 3.3 = 7.7. 10 is larger than this so it will show as an outlier in the boxplot. f. It’s bimodal
a. P(A and B) = 0.95*0.90 = 0. b. P(A or B) = 0.95 + 0.90 – 0.855 = 0.
a. n = 100 and π = 0. b. μ= n π = 50 and σ = sqrt(1000.50.5) = 5 c. P(Y>55) ~ P(Z>(55-50)/5) = 1-pnorm(1) = 0.159. It is somewhat likely. d. μ= n π = 500 and σ = sqrt(10000.50.5) = 15.8. P(Y>550) ~ P(Z>(550-500)/15.8) = 1-pnorm(3.165) ~ 0. It is very unlikely.
R-codes used for the plots:
attach(faithful) par(mfrow=c(2,1)) hist(eruptions, nclass=20, col='gray') boxplot(eruptions, horizontal=TRUE, col='gray') grid(col='black')