The Core Formula and a Worked Numeric Example
The equation is expressed as:
F = k × (|q₁ × q₂| / r²)
- F = Electrostatic force (Newtons, N)
- k = Coulomb's constant (≈ 8.987 × 10⁹ N⋅m²/C² in a vacuum/air, per NIST CODATA)
- q₁, q₂ = Magnitude of the charges (Coulombs, C)
- r = Distance between the center of the charges (meters, m)
Worked Bench Example: The Scale of a Microcoulomb
Let's calculate the repulsive force between two static charges of 1 microcoulomb (1 μC, or 1 × 10⁻⁶ C) separated by 10 centimeters (0.1 m) in air.
- Numerator: (1 × 10⁻⁶) × (1 × 10⁻⁶) = 1 × 10⁻¹² C²
- Denominator: (0.1)² = 0.01 m²
- Division: 10⁻¹² / 0.01 = 1 × 10⁻¹⁰
- Multiply by k: (8.987 × 10⁹) × (1 × 10⁻¹⁰) = 0.8987 Newtons
The Takeaway: 0.899 N is roughly the gravitational weight of a 90-gram apple. Two tiny, invisible static charges pushing apart with the force of an apple is significant. This proves why the 'Coulomb' is an impractically massive unit for static electricity; if you had two full 1-Coulomb charges separated by 1 meter, the force would be nearly 9 billion Newtons. This is why we use microcoulombs (μC) and nanocoulombs (nC) in circuit design.
What Coulomb's Law Changes in Real Installations
In a standard 120V AC branch circuit or a 5V Arduino breadboard, you never calculate Coulomb's Law. Once charges are moving continuously, Ohm's Law and Kirchhoff's Laws take over. However, Coulomb's Law directly changes your physical hardware geometry in three critical areas:
- PCB Clearance and Creepage: The inverse-square nature of the law means that doubling the distance between two high-voltage traces reduces the electrostatic force (and the risk of dielectric breakdown/arcing) by a factor of four. This is the physics underlying IPC-2221 clearance standards.
- Capacitor Dielectric Stress: The attractive force between the positive and negative plates of a capacitor is governed by this law. In high-voltage film capacitors, this physical attraction can literally crush or deform the dielectric material if not mechanically supported.
- ESD Spark Gaps: The distance at which a static charge jumps a gap (breakdown voltage of air is roughly 3 kV/mm) is a direct function of the electrostatic force overcoming the insulating properties of the air gap.
Common Confusions: Units, Currents, and Ohm's Law
Makers and junior engineers frequently mix up related terms. Here is how to separate them:
| Concept | What It Actually Is | When You Use It |
|---|---|---|
| Coulomb's Law | An equation calculating static force between stationary charges. | Designing HV spacing, ESD protection, capacitor physics. |
| The Coulomb (C) | The SI unit of electric charge (1 C = 6.242 × 10¹⁸ electrons). | Sizing battery capacity (Amp-hours) or calculating total charge transfer. |
| Ohm's Law | V = I × R. Calculates the flow rate of charges (current) through a resistance. | Sizing resistors, calculating voltage drop, wire ampacity. |
| Ampere's Law | Calculates the magnetic force generated by moving charges (current). | Designing inductors, transformers, and motor windings. |
Where You Meet This in Practice
You will not see Coulomb's Law on a multimeter display, but you will see its consequences when a board fails. The most common bench-level encounter is Electrostatic Discharge (ESD). The Human Body Model (HBM) for ESD typically models a person as a 100 pF capacitor charged to 2,000V, discharging through a 1,500Ω resistor. The initial charge (Q = C × V) is 200 nanocoulombs. When your finger approaches a sensitive GPIO pin, the electrostatic force (Coulomb's Law) accelerates those electrons across the microscopic air gap, creating a transient current spike that can melt the silicon junction of a microcontroller.
Decision Tree: Selecting ESD and Clearance Protection
Because electrostatic force scales inversely with the square of distance, you have two ways to protect a circuit: increase physical distance (clearance) or provide a low-impedance path to ground before the force breaches the silicon. Use this decision path to select your protection strategy.
| Scenario / Threat Level | If This Is Your Constraint... | Then Choose This Protection Strategy | Concrete Default Pick |
|---|---|---|---|
| 5V Logic / I2C / SPI GPIO | Max voltage is 5.5V; ESD threat is standard human handling (±8kV contact). | Use a low-capacitance TVS (Transient Voltage Suppression) diode array. Keep traces ≥0.2mm apart. | Nexperia PESD5V0S1BA (Low capacitance, clamps at 9.8V, protects 1 line). |
| 24V Industrial RS-485 | Nominal 24V, but transients can hit ±60V; high surge energy. | Use a high-surge TVS array with a higher working voltage (Vrwm ≥ 24V). | TI TPD4E05U06 (Handles high I/O speeds, 24V working voltage, 4-channel). |
| 120V AC Mains Relay Control | High continuous voltage; arc flash and electrostatic attraction of dust/moisture. | Do not rely on TVS alone. You must use physical PCB clearance and slotting. | ≥3.0mm Air Clearance (per IPC-2221 for 150V peak), plus a physical milled slot in the PCB. |
The Default Recommendation: For 90% of hobbyist and commercial low-voltage DC microcontroller projects (ESP32, Arduino, Raspberry Pi), the Nexperia PESD5V0S1BA or the 4-channel TPD4E05U06 are the definitive picks. They shunt the electrostatic force to ground in picoseconds, long before the voltage can bridge the microscopic gaps inside your IC.
Frequently Asked Questions
Does Coulomb's Law apply to AC circuits?
Only to the stray parasitic capacitance between wires. In an AC circuit, the voltage is constantly changing, which means the electrostatic force between adjacent wires is constantly reversing. This is what causes 'crosstalk' between unshielded adjacent cables. However, for calculating the primary power delivery, we use RMS voltage and Ohm's Law.
Why is the distance squared (r²) in the formula?
This is the inverse-square law, identical to how gravity and light intensity work in three-dimensional space. As the electric field lines radiate outward from a point charge, they spread over the surface area of a sphere (which grows by r²). Therefore, the density of the field lines—and the resulting force on a second charge—drops off by the square of the distance.
Can I use Coulomb's Law to calculate the force between two capacitor plates?
Yes, but with a caveat. Coulomb's Law in its basic form (F = kq₁q₂/r²) is for point charges. For large, flat parallel capacitor plates, the electric field is uniform between them, and the force is calculated using F = Q² / (2 × ε₀ × A), where A is the area of the plates. The underlying physics is the same, but the geometry requires integrating the point-charge forces across the entire surface area.






