Answer:
I can't tell you that ANSWER because I need to see the answers they gave you to circle or something
Math (e.g., algebra, geometry, calculus, computer computation) is used both as a tool to create mathematical models that describe physical phenomena and as a tool to evaluate the merit of different possible solutions. ... In engineering, math and science are tools used within the engineering design process.
Biologists use math as they plot graphs to help them understand equations, run small “trial and error” tests with some sample numbers when developing algorithms, and use the R project for analyzing protein sequences and structures. Electrical engineers use math in many ways in their career. They use math to help design and test electrical equipment. They use math to calculate amp and volt requirements for electrical projects. They use math in creating computer simulations and designs for new products.
Answer:
50421.6 m³
Explanation:
The river has an average rate of water flow of 59.6 m³/s.
Tributary B accounts for 47% of the rate of water flow. Therefore the rate of water flow through tributary B is:
Flow rate of water through tributary B = 47% of 59.6 m³/s = 0.47 * 59.6 m³/s = 28.012 m³/s
The volume of water that has been discharged through tributary B = Flow rate of water through tributary B * time taken
time = 30 minutes = 30 minutes * 60 seconds / minute = 1800 seconds
The volume of water that has been discharged through tributary B in 30 seconds = 28.012 m³/s * 1800 seconds = 50421.6 m³
Answer:
sum2 = 0
counter = 0
lst = [65, 78, 21, 33]
while counter < len(lst):
sum2 = sum2 + lst[counter]
counter += 1
Explanation:
The counter variable is initialized to control the while loop and access the numbers in <em>lst</em>
While there are numbers in the <em>lst</em>, loop through <em>lst</em>
Add the numbers in <em>lst</em> to the sum2
Increment <em>counter</em> by 1 after each iteration
Answer:
Yes, the flow is turbulent.
Explanation:
Reynolds number gives the nature of flow. If he Reynolds number is less than 2000 then the flow is laminar else turbulent.
Given:
Diameter of pipe is 10mm.
Velocity of the pipe is 1m/s.
Temperature of water is 200°C.
The kinematic viscosity at temperature 200°C is
m2/s.
Calculation:
Step1
Expression for Reynolds number is given as follows:

Here, v is velocity,
is kinematic viscosity, d is diameter and Re is Reynolds number.
Substitute the values in the above equation as follows:


Re=64226.07579
Thus, the Reynolds number is 64226.07579. This is greater than 2000.
Hence, the given flow is turbulent flow.