Garth said:
Just as you can do a "hybrid Newtonian-SR" calculation of light deflection by treating a photon as having a mass equivalent to its energy and obtain the wrong answer, half the GR prediction, so you can do a "hybrid Newtonian-SR" calculation of perihelion precession by treating Mercury as having a rest mass that increases with its kinetic energy, or alternately that subsumes its potential energy of the Sun's gravitational field. You also get the wrong answer - this time 1/6 the correct GR one.
Garth
The fact that you mention 1/6th is interesting to me. I once showed a precession method I had found to a trustworthy person, and they replied with a similar answer. Is this the same thing that you are referring to?
The conversation was as follows:
Me:
For a circular orbit, the body's average velocity is v = sqrt(G*M/r), where r is the average radius of orbit.
The precession rate per orbit is:
n = 2*pi*[1 - cos(arcsin(v/c))].
For the planet Mercury:
r = 57909176e3
v = 47873.5
n = 8.01124e-008
Converted to arc seconds per Earth century:
" = n*360*60*60*415 = 43.0876"
"Since v/c is small in this case, arcsin(v/c)=v/c and cos(arcsin(v/c)) =
1-(1/2)(v/c)^2. Thus your formula reads n=pi*(v/c)^2 = pi*G*M/(r*c^2)
which seems to differ by a factor of 6 from the standard result
n=6*pi*G*M/(r*c^2); see Misner-Thorne-Wheeler Exercise 25.16 or equation
40.18."
Me:
I believe that the discrepancy you noticed is because my method calculates in units of normalized orbit, where the standard method calculates in units of radians.
How I resolved the discrepancy:
r = 57909176e3; // Mercury's average orbit radius.
Using the method in question:
v = sqrt(G*M/r);
n = 2*pi*(1 - cos(asin(v/c))); // Orbits per orbit.
n*(360*60*60)*415 = 43.0876; // Converted to angle * orbits per century.
or, using the standard method:
n = 6*pi*G*M/(r*c*c); // Radians per orbit.
n*(180/pi*60*60)*415 = 41.1457; // Convert to angles * orbits per century.
... End conversation.
So it really came down to how many terms one used when approximating cos and asin. Approximating pi to be 3.0 would also cause problems, but maybe that wrench was being saved for future use. I jest confidently because I've since used the method to approximate the precession of PSR 1913+16 (no where did I multiply anything by 6).