Open In Colab

Coulomb's Electrostatic and Weber's Electrodynamic Laws:

Wilhelm Weber proposed a dynamic generalization of Coulomb's electrostatic force law which also included Ampere's circuit law and Faraday-Volta induction. Despite Weber's amazing achievements, along with Gustav Kirchoff, his electrical force law is not widely known among physicists today. Why? The Maxwellian field viewpoint is still dominant among the preferences of modern day phyiscs, and Weber is an instananeous action at a distance.

In this post we consider the question of comparing escape velocities for electrical particles, specifically an isolated pair of oppositely charged particles $(+)$ and $(-)$. In our setting the particles have identical inertial masses $m_1=m_2=1.0$ and opposite electrical charge $q_1q_2 =-1.0$.

Now the simple question we examine is computing escape velocities, which we define as velocities $v=v_{esc}$ of the particles which eventually escape to infinity, i.e. the boundary of the potential $U=0$.

With respect to the Coulomb potential we have $$U=\frac{q_1q_2}{r}$$ and the equation defining the escape velocity is $$ U+T = 0 = \frac{q_1q_2}{r} + \frac{1}{2} \mu {v^2}_{esc}.$$ This implies $$\frac{v^2}{2c^2} = \frac{-q_1 q_2}{\mu c^2 r}.$$ Our choice of notation will be motivated below.

For the Weber potential we find the escape velocity $r'$ satisfies the equation $$U + T = 0 = \frac{q_1q_2}{r} (1-\frac{r'^2}{2c^2}) + \frac{1}{2} \mu {r'^2}.$$

Solving for $r'^2/2c^2$ yields: $$\frac{r'^2}{2c^2} = \frac{1}{1 - \frac{\mu c^2 r}{q_1 q_2}},$$ which evidently satisfies $\leq 1.0$ whenever $q_1 q_2 < 0$.

The difference between the quantities $$\frac{r'^2}{2c^2}-\frac{v^2_{esc}}{2c^2}$$ is like the difference $$\frac{1}{\xi} - \frac{1}{\xi+1}$$ for $\xi>0$ where we define $\xi=\frac{-\mu c^2}{q_1 q_2} r$ and evidently $\xi\geq 0$ by our choice of $q_1 q_2 < 0$.

A Very Simple Graph:

Let's compare the Coulomb and Weber escape velocities:

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0.05, 1, 100)
y0 = 1/(x+1)
y = 1/x
#print('Values of x: ', x)
#print('Values of y: ', y)
plt.plot(x, y, "b", label = "Coulomb Escape Velocity")
plt.plot(x, y0, "g", label = "Weber Escape Velocity")
plt.title("Coulomb vs Weber Escape Velocities")
plt.xlabel("Rescaled radial distance ξ ")
plt.ylabel("Energies (1/2)*(r'/c)**2")
plt.legend()


plt.show()

Weber's formula for the escape velocity is: $$\frac{r'^2}{2c^2} = \frac{1}{1 - \frac{\mu c^2 r}{q_1 q_2}}.$$ As the distance $r>0$ approaches $r \to 0^+$ we see the escape velocity limits to unity, which represents $$r'^2 = 2c^2.$$ The $2$ is a convention, but this is a speed of light upper bound for the escape velocities.

So we observe:

  • Weber predicts that the speed of light is the limiting escape velocity for two body systems of opposite charge.

  • The Coulomb escape velocity diverges to $+\infty$ as the particles approach $r\to 0^+$. This suggests that Coulomb requires superluminal escape velocities at distances $r$ satisfying $\frac{-q_1 q_2}{\mu c^2 r} \geq 1,$ or equivalently $$0 < r < \frac{-q_1 q_2}{\mu c^2}. $$

Conclusion?

If one can experimentally witness the escape of opposite charge particles below the speed of light, as is expected, for "relatively close" particles, then this would in itself disqualify the Coulomb fact (and this is no surprise). But can we quantify what exactly the Weber force law predicts? If the formula is correct then there ought to be fairly good correspondance between the predictions.

[Incomplete: add concrete physical apparatus]

-JHM