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 best and most correct answer among the choices provided by your question is the second choice or letter B.
<span>When the switch is closed, the current instantaneously becomes 1.</span>
I hope my answer has come to your help. Thank you for posting your question here in Brainly. We hope to answer more of your questions and inquiries soon. Have a nice day ahead!
Angular acceleration = (change in angular speed) / (time for the change)
change in angular speed = (zero - 2,600 RPM) = -2,600 RPM
time for the change = 10 sec
Angular acceleration = -2600 RPM / 10 sec = -260 rev / min-sec
(-260 rev/min-sec) x (1 min / 60 sec) = <em>-(4 1/3) rev / sec²</em>
Since the acceleration is negative, the motor is slowing down.
You might call that a 'deceleration' of (4 1/3) rev/sec² .
The average speed is 1/2(2,600 + 0) = 1,300 rev/min = (21 2/3) rev/sec.
Number of revs = (average speed) x (time) = (21 2/3) x (10sec) = <em>(216 2/3) revs</em>
I can't guess what -9.8 m/s means until you tell me where it came from,
or what 'm/s' means.
If perhaps it has something to do with the acceleration of gravity on Earth,
then the correct figure is ' -9.8 m/s² '. That means that any object that
has no other force acting on it except gravity has its speed changing by
9.8 meters per second every second. Since it's gravity doing the job,
then the object's speed is either increasing down, or decreasing up.
If an object has negative velocity, then it's moving in the direction opposite
to the direction that you decided to call positive when you started doing the
problem.
For example, if you decide that up is positive and down is negative, and
then somebody drops a stone from the top of a tall building, then the
gravitational force on the stone is negative (pointing down), its velocity
is negative (it's falling towards down), and its acceleration is negative (its
speed towards down is getting faster and faster). Everything is negative,
only because you decided that up is positive and down is negative. It's
nothing to be worried about.