Answer:
Explanation:
k_max = 26.9 w/mk
k_min = 22.33 w/mk
Explanation:
a) the maximum thermal conductivity is given as
K_MAX = k_m v_m + k_p v_p
where k_m is thermal conductvitiy of metal
k_p is thermal conductvitiy of carbide
v_m = proportion of metal in the cement = 0.15
v_p = proportion of carbide in the cement = 0.85

= 66*0.15 + 20*0.85
k_max = 26.9 w/mk
b) the minimum thermal conductivity is given as

= \frac{20*66}{20*0.15 +66*0.85}
k_min = 22.33 w/mk
Answer:
Explanation:
Given f(x, y) = 5x + y + 2 and g(x, y) = xy = 1
The step by step calculation and appropriate substitution is clearly shown in the attached file.
Answer:
The pressure and power of fan is 1.77 and 11.18 Hp respectively.
Explanation:
Given:
Discharge
cfm
Pressure difference
inch
Efficiency 
(A)
From the formula of fan power,


Hp
(B)
Fan power and pressure is given by,
We know that pressure difference is proportional to the square of discharge.


Fan power proportional to the cube of discharge.


Hp
Therefore, the pressure and power of fan is 1.77 and 11.18 Hp respectively.
Answer:
Explanation:
Lets do this in python, our function will import an array of double numbers, then it sort the array out, drop the first and last items, aka highest and lowest score. Finally, it averages the last 3 numbers by calculate the sum and divide by the number of items
def calculate_score(scores):
scores.sort() # sort it so that the lowest is at index 0 and the highest is at last index
drop_highest_lowest = scores[1:-1] # this will drop the lowest and highest number
average_score = sum(drop_highest_lowest)/len(drop_highest_lowest)
return average_score