Answer on Question #45670, Physics, Mechanics
A spaceship orbits the moon at height of 20000 m. assuming it to be subject only to the gravitational pull of the moon, find its speed and the time it takes for one orbit.
Solution
I assume moon’s mass to be kg and moon’s radius m. Let us find speed. We know that gravitational force is actually centripetal force here. Hence
import math
G = 6.67e-11
M = 7.36e22
R = 1.74e6
r = 0.02e6
v = math.sqrt(G * M / (R + r))
print(v) # Output: 1670.1 m/sKnowing the speed and the length of orbit we find time for one orbit - the period
T = 2 * math.pi * (R + r) / v
print(T) # Output: 6621.3 s ≈ 1.8 hourshttp://www.AssignmentExpert.com/