Part 5 · Chapter 5.1 · Module M5.1
Resting Membrane Potential
The Nernst and Goldman-Hodgkin-Katz equations, ion gradients, and the electrogenic Na+/K+ ATPase
Learning Objectives
- •Derive the Nernst equation from thermodynamic equilibrium between diffusion and electrostatics.
- •Apply the Goldman-Hodgkin-Katz (GHK) equation to predict Vm from permeabilities and concentrations.
- •Explain the electrogenic role of the Na+/K+ ATPase and its ~25% contribution to resting metabolism.
- •Describe Donnan equilibrium and why living cells are never in true equilibrium.
- •Relate channel conductance distributions to the \(-70\) mV resting potential of mammalian neurons.
1.Overview: Why cells are batteries
Every living cell maintains an electrical potential across its plasma membrane. Typical values range from \(-90\) mV in skeletal muscle and cardiac ventricle to \(-70\) mV in most neurons and \(-40\) mV in pacemaker cells. This resting membrane potential (Vm) is a diffusion battery maintained by two ingredients:
- Ion concentration gradients stored by the Na+/K+ ATPase and secondary pumps.
- Selectively permeable channels that allow only certain ions to flow down their gradients.
The resting potential is not an equilibrium — it is a steady state consuming roughly one quarter of the body's ATP budget at rest. Without continuous pumping, gradients would dissipate with time constants of seconds to minutes, depending on channel density.
2.Physiological ion concentrations
The canonical mammalian ion concentrations used throughout this chapter are:
| Ion | [X]out (mM) | [X]in (mM) | Ratio | EX (mV, 37 °C) |
|---|---|---|---|---|
| K+ | 4 | 140 | 0.029 | \(-95\) |
| Na+ | 145 | 12 | 12.1 | \(+67\) |
| Cl- | 110 | 6 | 18.3 | \(-78\) |
| Ca2+ | 2 | 10-4 | 2×104 | \(+132\) |
| HCO3- | 24 | 12 | 2.0 | \(-19\) |
| A- (impermeant) | low | 125 | - | - |
Values are approximate; the low intracellular Ca2+ (100 nM) reflects active extrusion by PMCA pumps and SERCA sequestration. The impermeant anions A- are mostly proteins and organic phosphates trapped inside the cell — they are central to the Donnan argument below.
3.Derivation of the Nernst equation
Consider a single ion X of charge z across a membrane permeable only to X. The electrochemical potential of X on each side is
where \(\phi\) is the local electric potential. At equilibrium the electrochemical potential must be equal on both sides:
Solving for the potential difference \(E_X \equiv \phi_\text{in} - \phi_\text{out}\) yields the Nernst equation:
At 37 °C (310 K), \(RT/F \approx 26.7\) mV. Converting the natural log to log10 gives the practical form:
Worked example: for K+ with z = +1 and ratio 4/140, \(E_K = 26.7 \times \ln(0.0286) = -94.8\) mV. The intracellular side is negative because K+diffuses outward until its charge build-up stops further net flux.
4.Simulation 1 — Nernst & GHK survey
The following Python simulation computes the Nernst potential for each major ion, evaluates the GHK voltage at physiological permeabilities, and plots the classical Hodgkin-Katz curve of Vm versus external [K+].
Click Run to execute the Python code
Code will be executed with Python 3 on the server
The deviation of the GHK curve from pure K+ Nernst at low external [K+] is a signature of the small but finite Na+ permeability at rest. Raising [K+]out above 8 mM depolarizes cells by reducing the outward K+ gradient — the mechanism of hyperkalemic cardiac arrest.
5.The Goldman-Hodgkin-Katz (GHK) voltage equation
Real membranes are permeable to several ions simultaneously, and the resting potential lies between the various Nernst potentials in a weighted fashion. The Goldman-Hodgkin-Katz equation (1943-1949) assumes a constant electric field inside the membrane and gives Vm at steady state:
The Cl- terms appear inverted because chloride carries negative charge. Under resting conditions, \(p_K : p_{Na} : p_{Cl} \approx 1 : 0.04 : 0.45\) for the squid giant axon. The small but nonzero Na+ permeability drags Vm about +15 mV above pure EK, landing near \(-70\) mV.
Weighted-conductance (chord) approximation
An equivalent, more intuitive form uses channel conductances:
This is a voltage divider across parallel batteries, equivalent to the GHK equation in the linear regime. We use this form directly in the circuit model of Section 1.6.
During an action potential, pNa/pK transiently rises from 0.04 to roughly 20 (a 500-fold increase) as voltage-gated Na+ channels open, driving Vm toward +50 mV. We explore that process in Chapter 5.2.
6.The Na+/K+ ATPase (P-type pump)
Discovered by Jens Skou in 1957 (Nobel 1997), the Na+/K+ ATPase is a P-type ATPase that hydrolyzes one ATP per cycle to extrude 3 Na+ and import 2 K+. Because the net charge moved per cycle is +1 outward, the pump is electrogenic and directly contributes \(-5\) to \(-10\) mV to the resting potential in most cells.
The Post-Albers cycle
- E1 binds 3 Na+ and ATP intracellularly.
- Phosphorylation locks Na+ in the occluded E1P state.
- Conformational flip to E2P exposes ions to the extracellular side; 3 Na+ dissociate.
- E2P binds 2 K+ from the extracellular side.
- Dephosphorylation to E2 occludes K+.
- E2\(\to\)E1 transition exposes 2 K+ to the cytoplasm; cycle completes.
Biochemistry & pharmacology
- • Subunits: α (catalytic), β (regulatory), FXYD (modulatory). 4 α isoforms encode tissue-specific pumps.
- • Turnover: \(\sim 100\) Hz; affinity Km(Nain) \(\approx\) 10 mM, Km(Kout) \(\approx\) 1.5 mM.
- • Ouabain and digoxin inhibit the extracellular K+-binding conformation — classical cardiac glycosides.
- • Energy cost: roughly 25% of resting basal metabolic rate in the whole body; \(\sim\)70% in the brain.
Pump current in the circuit
The pump contributes an outward current \(I_\text{pump}\) to the membrane current balance:
For a typical neuron with \(10^9\) pumps per cm2 cycling at 100 Hz, this is \(\sim 16\) nA/cm2, enough to hyperpolarize by 5-10 mV through a membrane resistance of \(10^3 \Omega\,\text{cm}^2\).
7.Simulation 2 — Pump cycle Markov model
We simulate 2000 Na+/K+ pumps as a 4-state Markov chain and plot state occupancy, cumulative ion flux, and instantaneous currents. The 3:2 stoichiometry emerges naturally from the forward-biased rate constants.
Click Run to execute the Python code
Code will be executed with Python 3 on the server
The emergent turnover of \(\sim\)100 Hz/pump matches in-vivo measurements from patch-clamp on cardiac myocytes. Inhibition by ouabain is equivalent to lowering k01 to zero, halting the cycle.
8.Donnan equilibrium and the pump-leak argument
If a cell were a passive bag of impermeant anions (proteins, nucleic acids) surrounded by permeant small ions, it would relax to a Gibbs-Donnan equilibrium where the product of permeant ion concentrations is equal on both sides:
Donnan equilibrium creates both a membrane potential and an osmotic pressure difference — in a purely passive cell, the osmotic imbalance would swell and burst the membrane. Real cells avoid this catastrophe by running the Na+/K+ pump continuously, which keeps the cell "effectively impermeant" to Na+. This is the pump-leak model:
- Leak channels (K+, Cl-) dissipate gradients slowly.
- The pump restores gradients at the cost of ATP.
- At steady state, pump flux = leak flux for each ion; Vm is at GHK value.
- Water follows osmotic gradients passively; cell volume is maintained.
The Tosteson-Hoffman pump-leak model (1960) quantitatively predicted red-cell volume from pump density and leak permeability — a foundational result in membrane biophysics.
9.Channels setting the resting potential
The dominant conductance at rest is a family of background K+ channels, primarily:
K2P (two-pore)
TREK, TASK, TRAAK — constitutively open, responsible for the "leak" K+ current.
Kir (inward-rectifier)
Kir2.1 sets resting Vm in heart and striatal neurons; blocked by Mg2+ and polyamines at depolarized V.
Cl- channels
ClC-2, CFTR — provide a Cl- leak. In neurons with KCC2 cotransporter, ECl is near Vm.
Channel density is not uniform: axonal patches contain \(\sim 50\) Na+ channels per \(\mu\text{m}^2\) at nodes of Ranvier (Section 5.2), whereas somatic membrane has \(\sim\)2 per \(\mu\text{m}^2\).
10.How many charges does Vm require?
A surprising and important fact: the bulk ion concentrations inside and outside the cell are essentially unchanged by the presence of Vm. The membrane acts as a thin-film capacitor with \(C_m \approx 1\;\mu\text{F/cm}^2\). Charging to \(-70\) mV requires:
Dividing by Avogadro's number and F, this is \(\sim 7\times10^{-13}\) mol/cm2 of net charge — a monolayer of ions a few Angstroms thick pressed against each side of the membrane. The bulk cytoplasm remains electroneutral to \(>\)1 part in 106.
Clinical connections
Hyperkalemia
Raising [K+]o from 4 to 8 mM depolarizes myocardium by \(\sim 20\) mV — a cardiac arrest hazard in renal failure.
Digoxin toxicity
Inhibition of the Na+/K+ ATPase raises [Na+]i, enhancing Na/Ca exchange reversal and cardiac contractility — with a narrow therapeutic window.
Periodic paralyses
Mutations in skeletal muscle Na+ channels or Kir2.1 shift resting Vm and cause episodic weakness.
Ischemia
Loss of ATP arrests the pump — within minutes, ion gradients dissipate, cells depolarize, and glutamate release triggers excitotoxicity.
Key equations
11.Summary diagram
References
- • Nernst, W. (1889). Die elektromotorische Wirksamkeit der Ionen. Z. Phys. Chem.
- • Goldman, D. E. (1943). Potential, impedance and rectification in membranes. J. Gen. Physiol. 27, 37-60.
- • Hodgkin, A. L. & Katz, B. (1949). The effect of sodium ions on the electrical activity of the giant axon of the squid. J. Physiol. 108, 37-77.
- • Skou, J. C. (1957). The influence of some cations on an adenosine triphosphatase from peripheral nerves. Biochim. Biophys. Acta 23, 394-401.
- • Tosteson, D. C. & Hoffman, J. F. (1960). Regulation of cell volume by active cation transport in high and low potassium sheep red cells. J. Gen. Physiol. 44, 169-194.
- • Morth, J. P. et al. (2007). Crystal structure of the sodium-potassium pump. Nature 450, 1043-1049.