Answer:
It has to be performed a minimum of 1 trips to do 100 steps
It has to be performed a minimum of 4 trips to do 500 steps
It has to be performed a minimum of 7 trips to do 1000 steps
It has to be performed a minimum of 32 trips to do 5000 steps
All trips need to be 44
Step-by-step explanation:
open python console and execute the .py code bellow:
import math
floor_steps=16
floor=5
total=0
target_steps=2*floor_steps*floor
trips=100/(target_steps)
trips= math.ceil(trips)
total+=trips
print("It has to be performed a minimum of ",trips," trips to do 100 steps")
trips=500/(target_steps)
trips= math.ceil(trips)
total+=trips
print("It has to be performed a minimum of ",trips," trips to do 500 steps")
trips=1000/(target_steps)
trips= math.ceil(trips)
total+=trips
print("It has to be performed a minimum of ",trips," trips to do 1000 steps")
trips=5000/(target_steps)
trips= math.ceil(trips)
total+=trips
print("It has to be performed a minimum of ",trips," trips to do 5000 steps")
print("All trips need to be ",total)