Answer: 0.025 in = 0.065 mm
Explanation: To convert the value in inches to mm we have to multiply the inches by the conversion factor 25.4.
So, 0.025 × 25.4 = 0.065 mm (millimeter)
Conversion formula for calculation in (inch) into mm is:
Value in mm = Value in in × 25.4
- One inch is equal to the 25.4 mm.
Answer:
probability P = 0.32
Explanation:
this is incomplete question
i found complete A manufactures makes integrated circuits that each have a resistance layer with a target thickness of 200 units. A circuit won't work well if this thickness varies too much from the target value. These thickness measurements are approximately normally distributed with a mean of 200 units and a standard deviation of 12 units. A random sample of 17 measurements is selected for a quality inspection. We can assume that the measurements in the sample are independent. What is the probability that the mean thickness in these 16 measurements x is farther than 3 units away from the target value?
solution
we know that Standard error is expess as
Standard error = 
Standard error =
Standard error = 3
so here we get Z value for 3 units away are from mean are
mean = -1 and + 1
so here
probability P will be
probability P = P( z < -1 or z > 1)
probability P = 0.1587 + 0.1587
probability P = 0.3174
probability P = 0.32
Answer:
Explanation:
From the information given;
The velocity of the wind blow V = 7 m/s
The diameter of the blades (d) = 80 m
Percentage of the overall efficiency 
The density of air 
Then, we can use the concept of the kinetic energy of the wind blowing to estimate the mechanic energy of air per unit mass by using the formula:

here;
m = 
= 
= 43982.29 kg/s
∴




The actual electric power is:



Answer:
15.64 MW
Explanation:
The computation of value of X that gives maximum profit is shown below:-
Profit = Revenue - Cost
= 15x - 0.2x 2 - 12 - 0.3x - 0.27x 2
= 14.7x - .47x^2 - 12
After solving the above equation we will get maximum differentiate for profit that is
14.7 - 0.94x = 0
So,
x = 15.64 MW
Therefore for computing the value of X that gives maximum profit we simply solve the above equation.
Answer:
- def median(l):
- if(len(l) == 0):
- return 0
- else:
- l.sort()
- if(len(l)%2 == 0):
- index = int(len(l)/2)
- mid = (l[index-1] + l[index]) / 2
- else:
- mid = l[len(l)//2]
- return mid
-
- def mode(l):
- if(len(l)==0):
- return 0
-
- mode = max(set(l), key=l.count)
- return mode
-
- def mean(l):
- if(len(l)==0):
- return 0
- sum = 0
- for x in l:
- sum += x
- mean = sum / len(l)
- return mean
-
- lst = [5, 7, 10, 11, 12, 12, 13, 15, 25, 30, 45, 61]
- print(mean(lst))
- print(median(lst))
- print(mode(lst))
Explanation:
Firstly, we create a median function (Line 1). This function will check if the the length of list is zero and also if it is an even number. If the length is zero (empty list), it return zero (Line 2-3). If it is an even number, it will calculate the median by summing up two middle index values and divide them by two (Line 6-8). Or if the length is an odd, it will simply take the middle index value and return it as output (Line 9-10).
In mode function, after checking the length of list, we use the max function to estimate the maximum count of the item in list (Line 17) and use it as mode.
In mean function, after checking the length of list, we create a sum variable and then use a loop to add the item of list to sum (Line 23-25). After the loop, divide sum by the length of list to get the mean (Line 26).
In the main program, we test the three functions using a sample list and we shall get
20.5
12.5
12