Question

In: Statistics and Probability

The population of a culture of bacteria is calculated and recorded after each hour, for a...

The population of a culture of bacteria is calculated and recorded after each hour, for a six-hour period.

0 98
1 206
2 405
3 783
4 1550
5 2520
6 5630
  1. Sketch a graph to illustrate these data.
  2. Compare linear, quadratic, and exponential regression models. List the equations and correlation coefficients for each type of function. Provide a graph and include the regression lines.
  3. Use each model to determine the initial number of bacteria at the beginning of the study.
  4. Which function is the best model for these data? Explain your reasoning.

Solutions

Expert Solution

The R code given below.

X <- 0:6
Y <- c(98,   206,   405,   783,   1550,   2520,   5630)

linear.model <- lm(Y ~ X)
print(summary(linear.model))
X2 <- X^2
quadratic.model <- lm(Y ~ X+X2)
print(summary(quadratic.model))
exponential.model <- nls(Y ~ exp(a + b * X),start = list(a = 1, b = 1))
print(summary(exponential.model))

plot(1:1)
dev.new()
plot(X,Y, col="blue", lwd=2, xlab="X", ylab = "Y", main="Scatterplot & Regression lines")
curve( 798.9*x-797.8, xlim=c(0,6), lwd=2, col = "red", add=TRUE)
curve(233.8 *x^2-604.2*x+371.4, lwd=2, col = "violet", add=TRUE)
curve(exp(4.4729+ 0.6916*x), lwd=2, col = "green", add=TRUE)

a,b) The scatter plot and regression lines are plotted on the same window.

The linear model is : and Multiple R-squared: 0.7642

The quadratic model is :

and Multiple R-squared: 0.9606

The exponential model is :

The exponential model is the best fit and the linear model is the least fit.

c) The initial number of bacteria at the beginning of the study are calculated below.
For the linear model, For The quadratic model is : :

d) From the plots, The exponential model is the best fit.


Related Solutions

The initial size of a culture of bacteria is 1500. After one hour the bacteria count...
The initial size of a culture of bacteria is 1500. After one hour the bacteria count is 6000. A.) Find a function n(t) = n0ert that models the population after t hours (round your r value to five decimal places.) n(t)= B.) Find the population after 1.5 hours. (round answer to nearest whole number.) n(1.5)= C.) After how many hours will the number of bacteria reach 10,000? (round your answer to one decimal place.)
The population of bacteria​ (in millions) in a certain culture x hours after an experimental nutrient...
The population of bacteria​ (in millions) in a certain culture x hours after an experimental nutrient is introduced into the culture is ​P(x)=25x/6+x^2. Use the differential to approximate the changes in population for the following changes in x.a. 2 to 2.5                                                                                                                                b. 3 to 3.25
USE PYTHON TO SOLVE THIS PROBLEM A bacteria culture grows exponentially. After 2 hours, the bacteria...
USE PYTHON TO SOLVE THIS PROBLEM A bacteria culture grows exponentially. After 2 hours, the bacteria count was 400 cells and after 6 hours, the bacteria count was 20,000 cells. a) Solve a system of equations to find (approximately) k and y0 (HINT: If will help to assume K is real in the symbols command) b) Use this to determine when the bacteria count reaches 2,000,000 (exact and approximate). c) Suppose 400 was the “initial” amount and 20,000 the count...
USE PYTHON TO SOLVE THIS PROBLEM A bacteria culture grows exponentially. After 2 hours, the bacteria...
USE PYTHON TO SOLVE THIS PROBLEM A bacteria culture grows exponentially. After 2 hours, the bacteria count was 400 cells and after 6 hours, the bacteria count was 10,000 cells. a) Solve a system of equations to find (approximately) k and y0 (HINT: If will help to assume K is real in the symbols command) b) Use this to determine when the bacteria count reaches 1,000,000 (exact and approximate). c) Suppose 400 was the “initial” amount and 10,000 the count...
(1 point) The count in a bacteria culture was 200 after 15 minutes and 557 after...
(1 point) The count in a bacteria culture was 200 after 15 minutes and 557 after 25 minutes. Assume the growth can be modelled exponentially by a function of the form Q(t)=A e rt Q(t)=Aert , where t t is in minutes. (a) Find the relative growth rate, with at least the first 5 digits after the decimal point entered correctly: r= r= equation editor Equation Editor (b) What was the initial size of the culture? Round your answer to...
(1 point) The count in a bacteria culture was 600 after 10 minutes and 11613 after...
(1 point) The count in a bacteria culture was 600 after 10 minutes and 11613 after 20 minutes. Assume the growth can be modelled exponentially by a function of the form Q(t)=AertQ(t)=Aert, where tt is in minutes. (a) Find the relative growth rate, with at least the first 5 digits after the decimal point entered correctly: r=r= equation editor Equation Editor (b) What was the initial size of the culture? Round your answer to the closest integer. equation editor Equation...
point) The count in a bacteria culture was 500 after 10 minutes and 32518 after 30...
point) The count in a bacteria culture was 500 after 10 minutes and 32518 after 30 minutes. Assume the growth can be modelled exponentially by a function of the form Q(t)=A e rt Q(t)=Aert , where t t is in minutes. (a) Find the relative growth rate, with at least the first 5 digits after the decimal point entered correctly: r= r= equation editor Equation Editor (b) What was the initial size of the culture? Round your answer to the...
The count in a bacteria culture was 800 after 20 minutes and 1100 after 30 minutes....
The count in a bacteria culture was 800 after 20 minutes and 1100 after 30 minutes. Assuming the count grows exponentially, What was the initial size of the culture? Find the doubling period. Find the population after 70 minutes. When will the population reach 10000. You may enter the exact value or round to 2 decimal places.
The number of students coming for treatment at a health facility each half hour was recorded:...
The number of students coming for treatment at a health facility each half hour was recorded: {14, 11, 11, 11, 8, 12, 9, 13, 10, 14, 21, 7, 16, 9, 12, 9, 15, 10, 12, 11, 13, 10, 12, 10, 15, 14, 9, 11, 11, 8}. Do these data follow a Poisson distribution? Conduct the appropriate Chi-Square test.
a) Suppose that 650 bacteria are present initially in a culture. If the number of bacteria...
a) Suppose that 650 bacteria are present initially in a culture. If the number of bacteria triple every 5 hours, how long is it until there are 50,000 bacteria in the culture? b) The half-life of C14 is 5730 years. If a fossilized leaf contains 42% of its normal amount of C14, how old is the fossil? c) HOw long does it take for an investment to double in value if it is invested at 3.6% compounded quarterly?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT