Yes bc math, numbers and more
Answer:
a) > x<-c(1,2,3,4,5)
> y<-c(1.9,3.5,3.7,5.1,6)
> linearmodel<-lm(y~x)
And the output is given by:
> linearmodel
Call:
lm(formula = y ~ x)
Coefficients:
(Intercept) x
1.10 0.98
b) 
And if we compare this with the general model 
We see that the slope is m= 0.98 and the intercept b = 1.10
Explanation:
Part a
For this case we have the following data:
x: 1,2,3,4,5
y: 1.9,3.5,3.7,5.1, 6
For this case we can use the following R code:
> x<-c(1,2,3,4,5)
> y<-c(1.9,3.5,3.7,5.1,6)
> linearmodel<-lm(y~x)
And the output is given by:
> linearmodel
Call:
lm(formula = y ~ x)
Coefficients:
(Intercept) x
1.10 0.98
Part b
For this case we have the following trend equation given:

And if we compare this with the general model 
We see that the slope is m= 0.98 and the intercept b = 1.10
The correct option is
a. Acetyl-CoA combines with a pyruvic acid to make glucose in the Krebs cycle.
Explanation:
The Krebs citric acid cycle happens within the mitochondrial matrix and generates a pool of energy (ATP, NADH, and FADH2) from the oxidization of pyruvate, the tip product of metabolism. Pyruvate is transported into the mitochondria and loses dioxide to make acetyl-CoA, a 2-carbon molecule.
A. Move 2 m east and then 12 m east; displacement is 14 m east and the distance is 14 m
B. Move 10 m east and then 12 m west, the displacement is 2 m west and the distance is 22 m.
C. Move 8 m west and then 16 m east; the displacement is 8 m east and the distance is 24 m
D. Move 12 m west and then 8 m east; the displacement is 4 m and the distance is 20 m