Answer:
a ) 
b) 
Explanation:
given data:
pressure ration rp = 12
inlet temperature = 300 K
TURBINE inlet temperature = 1000 K
AT the end of isentropic process (compression) temperature is



AT the end of isentropic process (expansion) temperature is



isentropic work is given as

w = 1.005(610.18 - 300)
w = 311.73 kJ/kg
w(turbine) = 1.005( 1000 - 491.66)
w(turbine) = 510.88 kJ/kg
a) mass flow rate for isentropic process is given as


b) actual mass flow rate uis given as


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
What work??? I don’t see anything
Answer:
distance = 33.124 meters
Explanation:
To solve this question, we will use one of the equations of motion which is:
s = ut + 0.5a * t^2
where:
s is the distance that we want to get
u is the initial velocity = 0
a is the acceleration due to gravity = 9.8 m/sec^2
t is the time = 2.6 sec
Substitute with the givens in the equation to get the distance as follows:
s = ut + 0.5a * t^2
s = (0)(2.6) + 0.5(9.8)(2.6)^2
s = 33.124 meters
Hope this helps :)