Answer:
30.93 m/s
Explanation:
Given that, the speed of stolen car is,

As policeman start chasing the stolen car after 60 seconds.
Now suppose the speed of policeman car is, 
The policeman catches the stolen car at a distance of,

Now the distance covered by the policeman in time t is 
And the distane cover by the thief in stolen car in time(t+60s) is
.
And these distances are equal and they are equal to 60000 m.
Therefore,

Therfore,

Now use this value to solve for minimum speed of policeman's car.

Therefore minimum speed of policeman's car is 30.93 m/s.
Initial velocity(u) = 11.2 m/s.
Final velocity(v) = ?
acceleration(a) = 10.2 m/s²
Using kinematic equation v = u + at
v = 11.2 + 10 x 8 = 11.2 + 80 = 91.2 m/s.
Therefore final velocity is 91.2 m/s.
Answer:
43.2
because to convert from m/sec to kmph we need to multiply by 3600/1000
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