Compute total electrostatic potential V = k·Σ(qᵢ/rᵢ) at any point due to multiple point charges. Visualize charge configuration and contributions in real time.
| # | X (m) | Y (m) | Charge q (μC) | Action |
|---|
The electric potential at a point in space due to a point charge is defined as the work done per unit test charge to bring it from infinity to that point. For a point charge q, the potential at distance r is V = k·q / r, where k = 1/(4πε₀) ≈ 8.98755×10⁹ N·m²/C². The principle of superposition states that the total potential from multiple charges is the scalar sum of individual potentials: Vtotal = k Σ (qi / ri). Unlike the electric field (vector), potential is a scalar quantity, which simplifies calculations dramatically.
V(x,y) = k · ∑i=1..n qi / √[(x - xi)² + (y - yi)²]
where qi is the charge in Coulombs (converted from μC automatically) and distances in meters.
Our calculator implements exact superposition with real-time rendering. Positive charges create positive potential (repulsive for positive test), negative charges create negative potential. The tool is essential for understanding equipotential surfaces, potential energy of charge distributions, and electrostatic field mapping.
This calculator is built on the fundamental Coulomb's law, validated against standard physics textbooks (Young & Freedman, University Physics; Griffiths, Introduction to Electrodynamics). The superposition algorithm uses double-precision arithmetic to maintain accuracy up to 1e-12 relative error.
Example: Two opposite charges ±2 μC placed at (-1,0) and (1,0). Compute potential at (0,1). Using V = k(2e-6/√((0+1)²+1²) + k(-2e-6/√((0-1)²+1²)) = 0 V due to symmetry. Try the Dipole preset and see the cancellation at the midpoint perpendicular axis. This illustrates the fundamental property of ideal dipoles: V ∝ cosθ/r² at large distances.