Answer:
a)
, b)
, c) 
Explanation:
a) The deceleration experimented by the commuter train in the first 2.5 miles is:
![a=\frac{[(15\,\frac{mi}{h} )\cdot (\frac{5280\,ft}{1\,mi} )\cdot (\frac{1\,h}{3600\,s} )]^{2}-[(50\,\frac{mi}{h} )\cdot (\frac{5280\,ft}{1\,mi} )\cdot (\frac{1\,h}{3600\,s} )]^{2}}{2\cdot (2.5\,mi)\cdot (\frac{5280\,ft}{1\,mi} )}](https://tex.z-dn.net/?f=a%3D%5Cfrac%7B%5B%2815%5C%2C%5Cfrac%7Bmi%7D%7Bh%7D%20%29%5Ccdot%20%28%5Cfrac%7B5280%5C%2Cft%7D%7B1%5C%2Cmi%7D%20%29%5Ccdot%20%28%5Cfrac%7B1%5C%2Ch%7D%7B3600%5C%2Cs%7D%20%29%5D%5E%7B2%7D-%5B%2850%5C%2C%5Cfrac%7Bmi%7D%7Bh%7D%20%29%5Ccdot%20%28%5Cfrac%7B5280%5C%2Cft%7D%7B1%5C%2Cmi%7D%20%29%5Ccdot%20%28%5Cfrac%7B1%5C%2Ch%7D%7B3600%5C%2Cs%7D%20%29%5D%5E%7B2%7D%7D%7B2%5Ccdot%20%282.5%5C%2Cmi%29%5Ccdot%20%28%5Cfrac%7B5280%5C%2Cft%7D%7B1%5C%2Cmi%7D%20%29%7D)

The time required to travel is:


b) The commuter train must stop when it reaches the station to receive passengers. Hence, speed of train must be
.
c) The final constant deceleration is:


Answer =
dial bore gauge
a “dial bore gauge” measures the inside of round holes, such as the bearing journals . can mesure up to 2” and 6” diameter holes .
when ( “ ) is next to a number it means inches fwi - but hope this helped have a good day :)
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
Answer:
Stress corrosion cracking
Explanation:
This occurs when susceptible materials subjected to an environment that causes cracking effect by the production of folds and tensile stress. This also depends upon the nature of the corrosive environment.
Factors like high-temperature water, along with Carbonization and chlorination, static stress, and material properties.
It is to be noted that it is impossible to find the Maclaurin Expansion for F(x) = cotx.
<h3>What is
Maclaurin Expansion?</h3>
The Maclaurin Expansion is a Taylor series that has been expanded around the reference point zero and has the formula f(x)=f(0)+f′. (0) 1! x+f″ (0) 2! x2+⋯+f[n](0)n!
<h3>
What is the explanation for the above?</h3>
as indicated above, the Maclaurin infinite series expansion is given as:
F(x)=f(0)+f′. (0) 1! x+f″ (0) 2! x2+⋯+f[n](0)n!
If F(0) = Cot 0
F(0) = ∝ = 1/0
This is not definitive,
Hence, it is impossible to find the Maclaurin infinite series expansion for F(x) = cotx.
Learn more about Maclaurin Expansion at;
brainly.com/question/7846182
#SPJ1