Explanation:
1. Circumference is pi times diameter.
C = πd
C = 9π inches
C ≈ 28.3 inches
2. Mechanical advantage is ratio of output force to input force.
MA = Fout / Fin
MA = 155 lb / 15 lb
MA ≈ 10.3
3. Mechanical advantage is ratio of input distance over output distance.
MA = din / dout
MA = 10.5 in / 0.85 in
MA ≈ 12.4
4. Mechanical advantage of pulley system is the number of strands.
MA = 8
5. Mechanical advantage is ratio of output force to input force.
MA = Fout / Fin
8 = Fout / 200 lb
Fout = 1600 lb
def calculate_pay(total_worked_hours, rate_per_hour):
if total_hours_worked > 40:
# anything over 40 hours earns the overtime rate
overtimeRate = 2 * rate
_per_hour
return (40 * rate_per_hour) + ((total_worked_hours - 40) * overtimeRate
else:
# if you didn't work over 40 hours, there is no overtime
overtime = 0
return total_worked_hours * rate_per_hour
Explanation:
- First we create the calculate_pay function which will takes 2 parameters.
- Secondly ,inside the function we check if the total_worked_hours is greater than 40 and then return the pay by calculating with the help of formula for work over 40 hours.
- If the total work hour is less than 40 then we return the pay by multiplying the total_worked_hours with rate_per_hour.
Answer:
Use a story structure,
Explanation: Usually story engage the audience.