Answered step by step
Verified Expert Solution
Question
1 Approved Answer
A certain airline wishes to estimate the mean number of seats that are empty on flights that use 737-airplanes. There are 189 seats on a
A certain airline wishes to estimate the mean number of seats that are empty on flights that use 737-airplanes. There are 189 seats on a 737. To do so, the airline randomly picks n = 36 flights. For each flight, the number of empty seats is counted. The data are given below. 48, 46, 44, 46, 48, 47, 49, 42, 44, 52, 53, 40, 48, 47, 53, 48, 52, 58, 58, 42, 54, 53, 51, 54, 51, 55, 57, 56, 46, 48, 49, 44, 40, 55, 43, 62 Data from the sample, are saved in the Download .csv file. Distribution of Empty Seats 12 10 CO Frequency + 40 45 50 55 60 65 Number of Unoccupied Seats (a) Find the mean and the standard deviation of this sample. Use at least three decimal places in each answer. 4 - empty seats S= empty seats(b) To construct a confidence interval for the mean number using the T distribution for unoccupied seats on all flights that use 7375, what condition must you hold? F'. A. The number of unoccupied seats are not normally distributed. .5. B. The number of unoccupied seats can be modeled by the Binomial distribution. A C. The sample size is sufficiently large for the Central Limit Theorem to provide a valid approximation. 5 D. That the number of unoccupied seats are normally distributed. (c) Find a 90% Student T confidence interval for P, the mean number of empty seats on this airline's flights that use 737s. Use at least three decimal points for your lower and upper bounds. To avoid rounding errors you should use Fl-Stuido and not Tables. Lower Bound = empty seats Upper Bound : empty seats la: lm (d) Find a 90% confidence interval for m the mean number of empty seats on this airtine's flights that use 7375, by Bootstrapping 1000 samples. Use the seed 1341 to ensure that R-Studio "randomly" samples the same "random" samples as this question will expect. You can do this by including the code, you can copy it into your R-Studio to bootstrap your samples. RNGkind(sample.kind=" Rejection "); set.seed(1341); B=do(1000) * mean(resample(c(48, 46, 44, 46, 48, 47, 49, 42, 44, 52, 53, 40, 48, 47, 53, 48, 52, 58, 58, 42, 54, 53, 51, 54, 51, 55, 57, 56, 46, 48, 49, 44,40, 55. 43. 62), 36)); Ignore any errors or warnings that show up. Use at least three decimal points for your lower and upper bounds. Lower Bound = E- empty seats mwr
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started