Answer:
The corresponding absolute pressure of the boiler is 24.696 pounds per square inch.
Explanation:
From Fluid Mechanics, we remember that absolute pressure (), measured in pounds per square inch, is the sum of the atmospheric pressure and the working pressure (gauge pressure). That is:
(1)
Where:
- Atmospheric pressure, measured in pounds per square inch.
- Working pressured of the boiler (gauge pressure), measured in pounds per square inch.
If we suppose that and , then the absolute pressure is:
The corresponding absolute pressure of the boiler is 24.696 pounds per square inch.
This is a very very difficult one for me, let me get back to you with the proper answer.
Same question idea but different values... I hope I helped you... Don't forget to put a heart mark
Answer:
def theRoundTrip(movement):
x=0
y=0
for i in movement:
if i not in ["U","L","D","R"]:
print("bad input")
return
if i=="U":
y+=1
if i=="L":
x-=1
if i=="D":
y-=1
if i=="R":
x+=1
return x==0 and y==0