Seth M. answered 10/12/19
Expert help with Python, Java, JavaScript, C++, Philosophy, and Logic
In physics it can be helpful to simply write out everything we know (or think we know) from the start. Sometimes the answer or method becomes more apparent once we've done so. (There are more elegant ways to solve this, but this approach will help us learn some things as we do this.)
Consider your starting statement about the relationship of gravitational force and distance.
Fg ¤ 1 / d2
This means "The force of gravity is proportional to the inverse square of the distance." We can add a constant here to maybe be a bit more precise and help us work through the next steps. We'll call it G.
Fg = G / d2
You also have one known data point: The force of gravity on a person on the surface of the earth (4000 miles from the center) is 199 lbs. We can represent this using our formula as follows:
199 lb = G / 4000mi2
With some simple algebra work, we now have a value for G: 199 lb x 4000mi2 (or F1 x earth's radius squared)
Now let's consider our new situation, where the person is 100 miles above the surface of the earth. The formula for this is:
Fg = G / 4100mi2
So, we substitute our value for G from before to solve this:
Fg = 199 lb x 4000mi2 / 4100mi2 = 199 lb / 1.05 = 189 lb.
If we look closely at this last formula, the more "elegant" solution starts to appear. What we really have there is:
F2 = F1 x (d12 / d22)
F2 / F1 = (d12 / d22) = (d1 / d2)2
So, basically, the ratio of the gravitational forces = square of the ratio of the respective distances. We should be able to plug our numbers into this new formula and arrive at the same answer (and an answer for any distance).
F2 / F1 = (d1 / d2)2
F2 / 199lb = (4000 / 4100)2
F2 = 0.97562 x 199lb = 189 lb
In this way, if you know the distance and force, you can quickly calculate the answer for a related situation at another distance.