Electrostatic Fields and Potential
Electrostatics studies electric fields produced by stationary charge distributions. It is a special case of Maxwell's equations in which fields do not vary with time and magnetic induction is absent from the electric-field equation. The central objects are charge density, electric field intensity , electric flux density , scalar potential , and the force on charge.
The value of electrostatics is larger than "charges at rest." Capacitance, insulation design, electrostatic sensors, semiconductor depletion regions, and many boundary-value methods all begin here. Later, time-varying electromagnetics keeps the same electric field concepts but couples them to magnetic fields through Faraday's law and the displacement current.
Figure: Dipole field lines make superposition, potential gradients, and boundary intuition visible. Image: Wikimedia Commons, Geek3, CC BY-SA 4.0.
Definitions
Charge can be modeled in several idealized ways:
where is line charge density in C/m, is surface charge density in C/m, and is volume charge density in C/m.
Coulomb's law for the force on due to is
where points from to . The electric field is force per unit test charge:
For a point charge at the origin in a homogeneous medium,
For many point charges,
For continuous charge,
with the proper density and source element.
Electric potential difference is related to the field by
If the reference is infinity, the potential of a point charge is
The electrostatic field is conservative:
The zero-curl statement has an important qualification: it holds for electrostatics, not for time-varying magnetic fields. Once is nonzero, Faraday's law gives , and a single-valued scalar potential is not enough to describe the entire electric field. Electrostatic potential methods are therefore powerful but belong to the static limit or to quasistatic cases where induction is negligible.
Key results
The superposition principle is the workhorse of electrostatics. Because the governing equations are linear in charge and field for ordinary media with constant , fields and potentials from separate sources add. It is often easier to add scalar potentials and then take a gradient than to add vector fields directly:
For electrostatics in a homogeneous region,
Combining this with gives Poisson's equation:
In charge-free regions, it reduces to Laplace's equation:
Potential energy of a point charge in a potential is
The work done by the field moving charge from to is
This sign convention is a common source of confusion. A positive charge naturally moves toward lower potential because its potential energy decreases.
The electric dipole is a useful far-field approximation for two equal and opposite charges separated by small distance. Its moment is
directed from negative to positive charge. Far from the dipole, the potential falls as rather than , because the net charge is zero.
Potential is often the better design variable because conductor surfaces in electrostatic equilibrium are equipotentials. If the conductor voltages are known, a boundary-value problem for can be solved first, then gives the field. This sequence is used in capacitance extraction, insulation grading, electrostatic shielding, and semiconductor device approximations. The field is the physically force-producing quantity, but the potential is frequently the simpler mathematical unknown.
Dimensional checking is especially helpful in Coulomb integrals. A line charge contribution has units of V/m after multiplying by , while a potential contribution has units of volts. If a result for electric field scales as for an isolated point charge, or a result for potential scales as , the integration or geometry has likely been mixed up.
The choice between field-first and potential-first methods is usually dictated by symmetry. If the vector directions from all source elements combine simply, a direct integral is efficient. If directions vary but distances are simple, a scalar potential integral may be shorter. If conductor boundaries are specified by voltages, solving for is usually the natural route.
Electrostatic uniqueness is a powerful checking principle. If the potential satisfies the governing equation in the region and satisfies the specified conductor potentials or surface-charge conditions, then no second different electrostatic solution exists for the same problem. This is why boundary-value solutions can be trusted even when the intermediate mathematics looks indirect.
Visual
| Source type | Density | Charge element | Typical symmetry |
|---|---|---|---|
| Point charge | discrete | spherical | |
| Line charge | cylindrical | ||
| Surface charge | planar or shell | ||
| Volume charge | bulk region |
Worked example 1: Field of two point charges on an axis
Problem: Charges at and at cm are in free space. Find at cm.
Step 1: The observation point is to the right of both charges. Distances are
Step 2: Field from points in because is positive and the observation point is to its right:
Using ,
Step 3: Field from points toward the negative charge, so at cm it points in :
Step 4: Add fields:
Check: Although the charges are unequal, the observation point is twice as far from the larger charge, so the factors match.
Worked example 2: Potential and field of a uniformly charged ring on its axis
Problem: A ring of radius carries total charge uniformly. Find and at a point on the axis a distance from the center, using infinity as reference.
Step 1: Every ring element is the same distance from the observation point:
Step 2: The potential contribution is
Step 3: Integrate around the ring. Since is constant,
Step 4: Use . On the axis, only variation remains:
Step 5: Differentiate:
Thus
Check: At , by symmetry. Far away, , like a point charge.
Code
import numpy as np
import matplotlib.pyplot as plt
eps0 = 8.8541878128e-12
Q = 1e-9
a = 0.05
z = np.linspace(-0.2, 0.2, 500)
V = Q / (4 * np.pi * eps0 * np.sqrt(a**2 + z**2))
Ez = Q * z / (4 * np.pi * eps0 * (a**2 + z**2)**1.5)
fig, ax = plt.subplots(2, 1, sharex=True)
ax[0].plot(z, V)
ax[0].set_ylabel("V (volts)")
ax[0].grid(True)
ax[1].plot(z, Ez)
ax[1].set_xlabel("z (m)")
ax[1].set_ylabel("Ez (V/m)")
ax[1].grid(True)
plt.show()
Common pitfalls
- Using in the wrong direction. In field integrals, points from source to observation point.
- Forgetting that potential is scalar. Add potentials algebraically, then compute if needed.
- Dropping the sign in . The electric field points toward decreasing potential for positive charge.
- Applying point-charge formulas inside a continuous charge distribution without integrating.
- Using when the charge is embedded in another homogeneous dielectric with .
- Ignoring units for charge density. Line, surface, and volume densities use different dimensions.
- Treating the potential reference as physically measurable. Only potential differences affect work and circuit voltage.
Connections
- Vector algebra and coordinate systems for source-to-observer vectors and volume elements.
- Gradient, divergence, curl, and integral theorems for and Poisson's equation.
- Gauss law, dielectrics, and boundaries for high-symmetry electrostatic fields.
- Capacitance, energy, and image method for applications of potential differences.