Answer:
1066.67 N
Explanation:
Given that two measurements of the arm and an input weight. To answer this problem,we need to balance the forces and use the lengths of the arms.
Force × effort of arm distance= input weight × load distance
200 N * 8 m = x * 1.5 m
1600 = 1.5x
x = 1600/1.5
x = 1066.666 N
it takes 1066.67 N to lift the input weight
Answer:
def power(base, expo):
if expo == 0:
return 1
else:
return base * power(base, expo-1)
Explanation:
*The code is in Python.
Create a method called power that takes base and expo as parameters
Check if the expo is equal to 0. If it is return 1 (This is our base case for the method, where it stops. This way our method will call itself "expo" times). If expo is not 0, return base * power(base, expo-1). (Call the method itself, decrease the expo by 1 in each call and multiply the base)