Lab 8 Pre-Lab and Exercises
pdf
keyboard_arrow_up
School
University of Calgary *
*We aren’t endorsed by this school
Course
217
Subject
Statistics
Date
Apr 3, 2024
Type
Pages
9
Uploaded by trist8182
11/26/2019
Statistics 213 Lab Exercises – Confidence Intervals and a Bootstrapped Sample
https://scott-robison.rstudio.cloud/a8c401512bf9446cb9e30f29e3a95885/file_show?path=%2Fcloud%2Fproject%2FLab8.nb.html
1/9
Statistics 213 Lab Exercises –
Confidence Intervals and a Bootstrapped
Sample
© Jim Stallard, Scott Robison, and Claudia Mahler 2019 all rights reserved.
Pre-Lab Exercise 1:
To determine the amount of caffeine (in milligrams) that are in a medium ‘light-roast’ cup of coffee from Good Dirt
Café, a random sample of 12 medium cups of light- roast blend were inspected over the course of a week. The
amount of caffeine in each cup was observed. The resulting data are provided.
x=c(112.8, 86.4, 45.9, 110.3, 100.3, 93.3, 101.9, 115.7, 92.5, 117.3, 105.6, 81.6) x
The mean and standard deviation of this sample were computed:
mean(x) sd(x) n=length(x) n
a. Compute 95% confidence interval for , the mean amount of caffeine in a
medium-sized cup of light-roast blend from Good Dirt Café, if you assume the
data is normally distributed
.
Code Hide
Hide
Hide
11/26/2019
Statistics 213 Lab Exercises – Confidence Intervals and a Bootstrapped Sample
https://scott-robison.rstudio.cloud/a8c401512bf9446cb9e30f29e3a95885/file_show?path=%2Fcloud%2Fproject%2FLab8.nb.html
2/9
mean(x)-qt(0.975,n-1)*sd(x)/n^.5 mean(x)+qt(0.975,n-1)*sd(x)/n^.5
Or by using tables:
96.96667-2.201*19.75262/12^.5
96.96667+2.201*19.75262/12^.5
Notice that the table gives less precision due to rounding!
Or by bootstrapping the sample:
library(mosaic) RNGkind(sample.kind="Rejection"); set.seed(1); #this makes it so that so you will get the same random sample as we get below B=do(1000) * mean(resample(x, n)); quantile(B$mean,0.025) quantile(B$mean,0.975)
Hide
Hide
11/26/2019
Statistics 213 Lab Exercises – Confidence Intervals and a Bootstrapped Sample
https://scott-robison.rstudio.cloud/a8c401512bf9446cb9e30f29e3a95885/file_show?path=%2Fcloud%2Fproject%2FLab8.nb.html
3/9
We now have produced three different confidence intervals for :
1. using the assumption that the data is normally distributed (yet we don’t know )
and then using the computer to give more digits for the T distribution than tables
would give:
95% confidence interval: 2. using the assumption that the data is normally distributed (yet we don’t know )
and then using the T tables would give:
95% confidence interval: 3. using no assumptions allowing the computer to resample (with replacement from
the sample we have, repeatedly) “Bootstrapping”:
95% confidence interval: So which interval is best?
Typically the less assumptions we make the better, so unless we know a sample is normally distributed
it is
likely the bootstrapped confidence interval is the best. However, in order to bootstrap, you must have a computer
and the raw data from the sample. Therefore, when possible, bootstrapping is a great idea but the other methods
are good too.
In this scenario it was possible to bootstrap, and we did not know the normality of the data, so let’s use the
bootstrapped confidence interval as the best option:
95% confidence interval: .
b. Now look at the lower and upper bounds of the confidence interval found in (a)
and consider the following statement: “The probability that falls between the
lower and upper bounds is about 0.95.” Is this statement true or false? Why do
you think this is true or false?
False! is either in the interval or it is not. the confidence interval is not a measure of probability
but a measure
of certainty
!
We are 95%, confident or sure that will fall between .
c. What do you think would happen to the 95% confidence interval you found in (a)
if the sample size were larger than 12 medium cups of light-roast blend? Or, if
the sample size were the same and the level of confidence was smaller, like
90%?
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
11/26/2019
Statistics 213 Lab Exercises – Confidence Intervals and a Bootstrapped Sample
https://scott-robison.rstudio.cloud/a8c401512bf9446cb9e30f29e3a95885/file_show?path=%2Fcloud%2Fproject%2FLab8.nb.html
4/9
When sample size (
) goes up the interval width will go down. Since our accuracy of estimation increases with the
number of data points.
When confidence (
) goes up the interval width will increase. Since we are more confident we will have to
include more possibilities.
Pre-Lab Exercise 2:
Is the probability of getting heads for a particular coin really 0.50? You decide to flip a particular coin 100 times,
each time observing the upper-side of the coin being ‘heads’ or ‘tails’. If the upper-side shows ‘heads’, you quantify
this with a ‘1’. Otherwise, you quantify the outcome of the coin-flip with a ‘0’. After the 100 tosses, you observe 61
heads.
Find a 95% confidence interval for , the probability that this coin will show ‘heads’. From your answer, can you
say that the probability of this coin showing ‘heads’ is 0.50? Why or why not?
61/100-qnorm(0.975)*((61/100)*(1-61/100)/100)^.5
61/100+qnorm(0.975)*((61/100)*(1-61/100)/100)^.5
Or by using tables:
Hide
11/26/2019
Statistics 213 Lab Exercises – Confidence Intervals and a Bootstrapped Sample
https://scott-robison.rstudio.cloud/a8c401512bf9446cb9e30f29e3a95885/file_show?path=%2Fcloud%2Fproject%2FLab8.nb.html
5/9
61/100-1.96*((61/100)*(1-61/100)/100)^.5
61/100+1.96*((61/100)*(1-61/100)/100)^.5
Notice that the table gives less precision due to rounding!
Or by bootstrapping the sample:
Hide
Hide
11/26/2019
Statistics 213 Lab Exercises – Confidence Intervals and a Bootstrapped Sample
https://scott-robison.rstudio.cloud/a8c401512bf9446cb9e30f29e3a95885/file_show?path=%2Fcloud%2Fproject%2FLab8.nb.html
6/9
library(mosaic) RNGkind(sample.kind="Rejection"); set.seed(1); #this makes it so that so you will get the same random sample as we get below B=do(1000) * mean(resample(c(rep(1,61),rep(0,100-61)), 100)); quantile(B$mean,0.025) quantile(B$mean,0.975)
We now have produced three different confidence intervals for :
1. using the assumption that the data is binomial distributed and then using the
computer to give more digits for the Z distribution than tables would give:
95% confidence interval: 2. using the assumption that the data is Binomial distributed and then using the Z
tables would give:
95% confidence interval: 3. using no assumptions allowing the computer to resample (with replacement from
the sample we have, repeatedly) “Bootstrapping”:
95% confidence interval: So which interval is best? Typically the less assumptions we make the better, so unless we know a sample is
normally distributed
it is likely the Bootstrapped confidence interval is the best. However, to bootstrap you must
have a computer. Therefore, when possible bootstrapping is a great idea but the other methods are good too.
Since does not fall between the bounds of the confidence interval (95% confidence ) it does
not
appear that this coin is “fair” (flips heads or tails 50% of the time).
Lab Exercise 1:
A random sample of 16 flights offered by a certain national air carrier is taken. For each flight chosen, the minutes
each flight was delayed was observed. The flight delay is defined as the difference between the time the plane
was scheduled to pull away from the jet way and the actual time the plane pulls away from the jet way (with
positive values indicating that the flight is late). For now, assume the flight-delay variable is normally distributed
.
Data:
a. Analyze the data by copying and pasting it into R-Studio.
Hide
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
11/26/2019
Statistics 213 Lab Exercises – Confidence Intervals and a Bootstrapped Sample
https://scott-robison.rstudio.cloud/a8c401512bf9446cb9e30f29e3a95885/file_show?path=%2Fcloud%2Fproject%2FLab8.nb.html
7/9
x=c(0, 1, -6, -6, 157, -3, 178, -3, -10, 42, -2, 120, 5, 59, 0, -2) Compute the value of the sample mean and the sample standard deviation.
b. Using R Studio, find the -multiplier needed for the -version of the confidence
interval for the population mean .
Calculate the 95% confidence interval for using this -multiplier.
c. Now consider a 99% bootstrapped confidence for Before doing any
computation, do you expect this confidence interval to be wider, narrower, or to
have the same width as the 95% confidence interval you computed in part b?
d. Copy and paste the following code into R Studio to bootstrap the sample:
library(mosaic) RNGkind(sample.kind="Rejection"); set.seed(1);#so you will get the "same" random sampling as me B=do(1000) * mean(resample(c(0, 1, -6, -6, 157, -3, 178, -3, -10, 42, -2, 120, 5, 59, 0, -2), 16
)); Compute a 99% bootstrap confidence interval for by copying the following two
pieces of code into R Studio.
Hide
11/26/2019
Statistics 213 Lab Exercises – Confidence Intervals and a Bootstrapped Sample
https://scott-robison.rstudio.cloud/a8c401512bf9446cb9e30f29e3a95885/file_show?path=%2Fcloud%2Fproject%2FLab8.nb.html
8/9
quantile(B$mean,0.005); quantile(B$mean,0.995); Lab Exercise 2:
The following is data that resulted from a cluster sample of 109 students taking Statistics 213. Each student was
asked if they support differential tuition fees. If a student did support differential fees, their response was coded
with a “1”. A “non support” was coded with a “0”. The data is as follows:
0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1,
1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1,
1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1
a. Use R Studio to find the number of Statistics 213 students in this sample who
“support” differential tuition fees, which you will record as the observed value of
the random variable , a binomially distributed random variable. Rather than
simply counting the number of ’1’s, follow the R Studio steps:
x=c(0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1); sum(x); length(x); b. Compute the 97% confidence interval for , the proportion of all Statistics 213
students who support differential tuition fees (when data follows a binomial
distribution).
c. Use R Studio to compute a 97% bootstrapped confidence interval.
Hide
Hide
Hide
11/26/2019
Statistics 213 Lab Exercises – Confidence Intervals and a Bootstrapped Sample
https://scott-robison.rstudio.cloud/a8c401512bf9446cb9e30f29e3a95885/file_show?path=%2Fcloud%2Fproject%2FLab8.nb.html
9/9
library(mosaic) RNGkind(sample.kind="Rejection"); set.seed(1);#so you will get the "same" random sampling as me B=do(1000) * mean(resample(c(rep(1,55),rep(0,109-55)), 109)); quantile(B$mean,0.015); quantile(B$mean,0.985);
d. A figure recently quoted by an executive of the Student’s Union (SU) was that
30% of all U of C students support differential tuition fees. From your finding in
parts (b) and (c), is this figure supported?
Use the skills you have learned in this lab to complete the lab quiz.
Hide
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
Related Documents
Related Questions
https://1drv.ms/x/s!AtOrdm3usPcAgmQXM6WPhcSyT3in
arrow_forward
The Data
The dataset "energy" is a random sample of 56 cases from “Existing Buildings Energy Performance Ordinance Report” from the City of San Francisco Open Data Portal. There are 2,629 cases in the dataset.
Citation: SFEBO Help Desk.(Last updated 11/13/2020). Existing Buildings Energy Performance Ordinance Report [data file]. Provided by SF Environment. (Retrieved 11/29/2020). https://data.sfgov.org/Energy-and-Environment/Existing-Buildings-Energy-Performance-Ordinance-Re/j2j3-acqj
There are 57 cases. Each case is a building in San Francisco that must be benchmarked using Energy Star Portfolio Manager annually.
There are 6 variables:
parcel - the parcel number
building - the building name
postal_code - the postal code
year_built - the year the building was built
energy_score19 - the ENERGY STAR score for 2019; 1 - 100, where 50 is the national median score, and 100 is best energy performance.
energy_score18 - the ENERGY STAR score for 2018
energy.csv download…
arrow_forward
Please explain why the correct answers pre-selected are correct and why the ones that are not selected are incorrect.
Thanks.
arrow_forward
Good handwriting please
arrow_forward
Please answer the second part of the question. How should this value be related to the confidence level?
arrow_forward
Question Heip
The data from a simple random sample with 25 observations was used to construct the plots given below. The normal probability plot that was constructed has a
correlation coefficient of 0.948. Judge whether a t-interval could be constructed using the data in the sample.
Click here to view the normal probability_plot and the boxplot.
Click here to view the table of critical values of the correlation coefficient,
The normal probability plot
V the data could come from a normal population because 0.948
and the boxplot
V outliers, so
a t-interval
V be constructed.
(Round to three decimal places as needed.)
Normal Probability Plot and Bloxplot
10
20
30
40
-20
-jo
10
20
30
40
50
60
Data
Print
Done
Expected Z-Score
arrow_forward
Please submit the answer via a PDF document or Word document.
**Independent t-test**
Use the following data and scenario to answer the questions.
You want to know if someone's exercise status (those who exercise and those who do not exercise) significantly influences energy level. You obtain different participants and put 30 in the "exercise" group and another 30 in the "non-exercise" group. Those in the "exercise" group exercised one hour per day for 2 weeks. Those in the "non-exercise" group refrained from exercising. (In SPSS, code exercise as 1 and non-exercise as 2). After the two weeks you obtained their energy level via a quantitative scale. You hypothesize that exercise status will significantly influence energy level. Use the following data to answer the following questions:
1. Is the study significant?
2. Is p <.05 or p>.05?
3. Do you reject or retain the null hypothesis?
4. What can you conclude about the hypothesis for this study?
5. What is the statistical sentence?…
arrow_forward
How tp use a sample mean to calculate a confidence interval?
arrow_forward
Reconsider the partial & part correlations for this scenario: SEE IMG_9786.jpg
Which of the following options provides the best interpretation of the part correlation for Stress Score? (one correct answer only)
Group of answer choices
A) Stress Score explains an additional 4.9% (rpart2 = .2212 = .049) of the variation in depression score, over and above that explained by the other predictors
B) When all the other predictors (age, gender and anxiety score) are statistically controlled, there is a moderate, positive, linear relationship between Stress Score and depression score (rpart = .221)
C) When all the other predictors (age, gender and anxiety score) are statistically controlled, there is a very weak, positive, linear relationship between Stress Score and depression score (rpart = .221)
D) Stress Score explains an additional 22.1% (rpart = .221) of the variation in depression score, over and above that explained by the other predictors
arrow_forward
The data "sea_pets_samp" is a simple random sample of 100 cases from the dataset "seattlepets" from OpenIntro.Org. Each case is a registered pet in Seattle, WA between 2003 and 2018. There are 100 pets in the sample, and 29 of them are cats.
Question: "With 95% confidence, what percent of registered pets in Seattle, WA between 2003 and 2018 were cats?"
arrow_forward
Reconsider the partial & part correlations for this scenario: SEE IMG_9788.jpg
Which of the following options provides the best interpretation of the part correlation for Anxiety Score? ONE CORRECT ANSWER ONLY
A) Anxiety Score explains an additional 5.7% (rpart2 = .2392 = .057) of the variation in depression score, over and above that explained by the other predictors
B) Anxiety Score explains an additional 23.9% (rpart = .239) of the variation in depression score, over and above that explained by the other predictors
C) When all the other predictors (age, gender and anxiety score) are statistically controlled, there is a moderate, positive, linear relationship between Anxiety Score and depression score (rpart = .239)
D) When all the other predictors (age, gender and anxiety score) are statistically controlled, there is a very weak, positive, linear relationship between Anxiety Score and depression score (rpart = .239)
arrow_forward
Explain the population characteristic for using confidence interval?
arrow_forward
if the sample standard deviation is 0.5 and the number of observations is 6. what is the sample variance?
show with steps plese,
thanks
arrow_forward
Home * Students
(B 8-1 Final Exam MAT-133-X35 X
E8-1 Final Exam
VA https://newconnect.mheducation.com/flow/connect.html
1
Saved
Consider the following sample data.
Sample A:
Sample B:
Sample C:
7, 11, 15
65, 69, 73
1,020; 1,024; 1,028
(a) Find the mean and standard deviation for each sample.
Sample A:
Sample B:
Sample C:
Mean
Sample Standard.Deviation
arrow_forward
9:32 PM Sun Apr 4
mathxl.com
Use the given confidence interval to find the margin of error and the sample mean.
(5.94,8.92)
The sample mean is (Type an integer or a decimal.)
The margin of error is (Type an integer or a decimal.)
arrow_forward
Is mean systolic blood pressure lower among patients after they have received medication compared to before?
Comparing matched pairs
Comparing proportions
Comparing means
Correlation
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

Glencoe Algebra 1, Student Edition, 9780079039897...
Algebra
ISBN:9780079039897
Author:Carter
Publisher:McGraw Hill

Big Ideas Math A Bridge To Success Algebra 1: Stu...
Algebra
ISBN:9781680331141
Author:HOUGHTON MIFFLIN HARCOURT
Publisher:Houghton Mifflin Harcourt

Holt Mcdougal Larson Pre-algebra: Student Edition...
Algebra
ISBN:9780547587776
Author:HOLT MCDOUGAL
Publisher:HOLT MCDOUGAL
Related Questions
- https://1drv.ms/x/s!AtOrdm3usPcAgmQXM6WPhcSyT3inarrow_forwardThe Data The dataset "energy" is a random sample of 56 cases from “Existing Buildings Energy Performance Ordinance Report” from the City of San Francisco Open Data Portal. There are 2,629 cases in the dataset. Citation: SFEBO Help Desk.(Last updated 11/13/2020). Existing Buildings Energy Performance Ordinance Report [data file]. Provided by SF Environment. (Retrieved 11/29/2020). https://data.sfgov.org/Energy-and-Environment/Existing-Buildings-Energy-Performance-Ordinance-Re/j2j3-acqj There are 57 cases. Each case is a building in San Francisco that must be benchmarked using Energy Star Portfolio Manager annually. There are 6 variables: parcel - the parcel number building - the building name postal_code - the postal code year_built - the year the building was built energy_score19 - the ENERGY STAR score for 2019; 1 - 100, where 50 is the national median score, and 100 is best energy performance. energy_score18 - the ENERGY STAR score for 2018 energy.csv download…arrow_forwardPlease explain why the correct answers pre-selected are correct and why the ones that are not selected are incorrect. Thanks.arrow_forward
- Good handwriting pleasearrow_forwardPlease answer the second part of the question. How should this value be related to the confidence level?arrow_forwardQuestion Heip The data from a simple random sample with 25 observations was used to construct the plots given below. The normal probability plot that was constructed has a correlation coefficient of 0.948. Judge whether a t-interval could be constructed using the data in the sample. Click here to view the normal probability_plot and the boxplot. Click here to view the table of critical values of the correlation coefficient, The normal probability plot V the data could come from a normal population because 0.948 and the boxplot V outliers, so a t-interval V be constructed. (Round to three decimal places as needed.) Normal Probability Plot and Bloxplot 10 20 30 40 -20 -jo 10 20 30 40 50 60 Data Print Done Expected Z-Scorearrow_forward
- Please submit the answer via a PDF document or Word document. **Independent t-test** Use the following data and scenario to answer the questions. You want to know if someone's exercise status (those who exercise and those who do not exercise) significantly influences energy level. You obtain different participants and put 30 in the "exercise" group and another 30 in the "non-exercise" group. Those in the "exercise" group exercised one hour per day for 2 weeks. Those in the "non-exercise" group refrained from exercising. (In SPSS, code exercise as 1 and non-exercise as 2). After the two weeks you obtained their energy level via a quantitative scale. You hypothesize that exercise status will significantly influence energy level. Use the following data to answer the following questions: 1. Is the study significant? 2. Is p <.05 or p>.05? 3. Do you reject or retain the null hypothesis? 4. What can you conclude about the hypothesis for this study? 5. What is the statistical sentence?…arrow_forwardHow tp use a sample mean to calculate a confidence interval?arrow_forwardReconsider the partial & part correlations for this scenario: SEE IMG_9786.jpg Which of the following options provides the best interpretation of the part correlation for Stress Score? (one correct answer only) Group of answer choices A) Stress Score explains an additional 4.9% (rpart2 = .2212 = .049) of the variation in depression score, over and above that explained by the other predictors B) When all the other predictors (age, gender and anxiety score) are statistically controlled, there is a moderate, positive, linear relationship between Stress Score and depression score (rpart = .221) C) When all the other predictors (age, gender and anxiety score) are statistically controlled, there is a very weak, positive, linear relationship between Stress Score and depression score (rpart = .221) D) Stress Score explains an additional 22.1% (rpart = .221) of the variation in depression score, over and above that explained by the other predictorsarrow_forward
- The data "sea_pets_samp" is a simple random sample of 100 cases from the dataset "seattlepets" from OpenIntro.Org. Each case is a registered pet in Seattle, WA between 2003 and 2018. There are 100 pets in the sample, and 29 of them are cats. Question: "With 95% confidence, what percent of registered pets in Seattle, WA between 2003 and 2018 were cats?"arrow_forwardReconsider the partial & part correlations for this scenario: SEE IMG_9788.jpg Which of the following options provides the best interpretation of the part correlation for Anxiety Score? ONE CORRECT ANSWER ONLY A) Anxiety Score explains an additional 5.7% (rpart2 = .2392 = .057) of the variation in depression score, over and above that explained by the other predictors B) Anxiety Score explains an additional 23.9% (rpart = .239) of the variation in depression score, over and above that explained by the other predictors C) When all the other predictors (age, gender and anxiety score) are statistically controlled, there is a moderate, positive, linear relationship between Anxiety Score and depression score (rpart = .239) D) When all the other predictors (age, gender and anxiety score) are statistically controlled, there is a very weak, positive, linear relationship between Anxiety Score and depression score (rpart = .239)arrow_forwardExplain the population characteristic for using confidence interval?arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Glencoe Algebra 1, Student Edition, 9780079039897...AlgebraISBN:9780079039897Author:CarterPublisher:McGraw HillBig Ideas Math A Bridge To Success Algebra 1: Stu...AlgebraISBN:9781680331141Author:HOUGHTON MIFFLIN HARCOURTPublisher:Houghton Mifflin HarcourtHolt Mcdougal Larson Pre-algebra: Student Edition...AlgebraISBN:9780547587776Author:HOLT MCDOUGALPublisher:HOLT MCDOUGAL

Glencoe Algebra 1, Student Edition, 9780079039897...
Algebra
ISBN:9780079039897
Author:Carter
Publisher:McGraw Hill

Big Ideas Math A Bridge To Success Algebra 1: Stu...
Algebra
ISBN:9781680331141
Author:HOUGHTON MIFFLIN HARCOURT
Publisher:Houghton Mifflin Harcourt

Holt Mcdougal Larson Pre-algebra: Student Edition...
Algebra
ISBN:9780547587776
Author:HOLT MCDOUGAL
Publisher:HOLT MCDOUGAL