Chapter 33
18 min read
Section 278 of 353

Introduction to Poisson's Equation

Poisson's Equation

Introduction

Poisson's equation is one of the most fundamental partial differential equations in mathematical physics. Named after French mathematician Sim\u00e9on Denis Poisson (1781-1840), this equation describes potential fields generated by distributed sources. It appears in electrostatics, gravitation, fluid mechanics, heat transfer, and even modern applications like image processing and computer graphics.

Universal Applicability: Poisson's equation is remarkable for its universality. The same mathematical structure describes the electric potential around charges, the gravitational potential around masses, the steady-state temperature in a material with heat sources, and pressure fields in fluids. Master this equation, and you gain insight into a vast range of physical phenomena.

Understanding Poisson's equation requires combining concepts from vector calculus (the Laplacian operator), boundary value problems, and Green's functions. This chapter will build these connections systematically.


The Poisson Equation

Poisson's equation relates the Laplacian of a scalar potential function to a source term:

2ϕ=f(r)\nabla^2 \phi = f(\mathbf{r})

where:

  • ϕ(r)\phi(\mathbf{r}) is the unknown potential function we seek
  • f(r)f(\mathbf{r}) is a known source distribution
  • 2\nabla^2 is the Laplacian operator

The Laplacian takes different forms depending on the coordinate system:

CoordinatesLaplacian Expression
Cartesian (x, y, z)\partial^2\phi/\partial x^2 + \partial^2\phi/\partial y^2 + \partial^2\phi/\partial z^2
Cylindrical (r, \theta, z)(1/r)\partial/\partial r(r\partial\phi/\partial r) + (1/r^2)\partial^2\phi/\partial\theta^2 + \partial^2\phi/\partial z^2
Spherical (r, \theta, \phi)(1/r^2)\partial/\partial r(r^2\partial\phi/\partial r) + ...

Laplace's Equation: The Special Case

When the source term is zero (f=0f = 0), Poisson's equation reduces to Laplace's equation:

2ϕ=0\nabla^2 \phi = 0

Solutions to Laplace's equation are called harmonic functions. These describe potentials in source-free regions and have remarkable mathematical properties.

Classification: Poisson's equation is an elliptic PDE, the same class as Laplace's equation. Unlike parabolic (heat) or hyperbolic (wave) equations, elliptic PDEs describe steady-state phenomena and are solved as boundary value problems rather than initial value problems.

Physical Derivation

Poisson's equation arises naturally in many physical contexts. Let's examine the two most important derivations.

Electrostatics

In electrostatics, Gauss's law relates the electric field to charge density:

E=ρε0\nabla \cdot \mathbf{E} = \frac{\rho}{\varepsilon_0}

Since the electric field is the negative gradient of the electric potential:

E=V\mathbf{E} = -\nabla V

Substituting into Gauss's law:

(V)=ρε0\nabla \cdot (-\nabla V) = \frac{\rho}{\varepsilon_0}

This gives us Poisson's equation for electrostatics:

2V=ρε0\nabla^2 V = -\frac{\rho}{\varepsilon_0}
Physical Interpretation: The Laplacian of the potential at a point measures how much the potential deviates from the average of its surroundings. Where there's positive charge density, the potential is higher than its surroundings; where there's negative charge, it's lower.

Gravitational Potential

Similarly, for gravitation, the gravitational field relates to mass density:

g=4πGρm\nabla \cdot \mathbf{g} = -4\pi G \rho_m

With g=Φ\mathbf{g} = -\nabla \Phi (gravitational potential), we get:

2Φ=4πGρm\nabla^2 \Phi = 4\pi G \rho_m

This equation describes how mass distributions create gravitational potential fields, from planetary atmospheres to galaxy clusters.


Properties of Solutions

Solutions to Poisson's equation (and especially Laplace's equation) have remarkable properties:

PropertyDescription
UniquenessGiven boundary conditions, the solution is unique
Mean Value PropertyFor harmonic functions, the value at any point equals the average over any surrounding sphere
Maximum PrincipleHarmonic functions attain their maxima and minima on the boundary
SmoothnessSolutions are infinitely differentiable (smooth)
SuperpositionSum of solutions is a solution (linearity)
The Maximum Principle: A harmonic function (solution to Laplace's equation) cannot have a local maximum or minimum inside its domain. This means steady-state temperatures, electric potentials, and gravitational potentials always take their extreme values on the boundaries—a powerful constraint for analysis and numerics.

Boundary Conditions

To solve Poisson's equation, we need boundary conditions. The three main types are:

TypeConditionPhysical Example
Dirichlet\phi = g on boundaryGrounded conductor (V = 0)
Neumann\partial\phi/\partial n = h on boundaryInsulated boundary (no flux)
Mixed (Robin)a\phi + b\partial\phi/\partial n = cConvective heat transfer

where /n\partial/\partial n denotes the derivative normal to the boundary surface.

Well-Posedness: Poisson's equation with Dirichlet conditions always has a unique solution. With pure Neumann conditions, solutions are unique only up to an additive constant (physical potentials are only defined up to a reference point).

Analytical Solutions

For simple geometries, analytical solutions can be found using various techniques:

Point Source in 3D

The fundamental solution of Poisson's equation (also called the Green's function for free space) represents the potential of a point source:

G(r,r)=14πrrG(\mathbf{r}, \mathbf{r}') = -\frac{1}{4\pi|\mathbf{r} - \mathbf{r}'|}

For an arbitrary source distribution, the solution is:

ϕ(r)=G(r,r)f(r)d3r\phi(\mathbf{r}) = \int G(\mathbf{r}, \mathbf{r}') f(\mathbf{r}') \, d^3r'

Separation of Variables

For problems with symmetry (rectangular, cylindrical, or spherical), separation of variables converts the PDE into ODEs. In 2D Cartesian coordinates:

ϕ(x,y)=X(x)Y(y)\phi(x,y) = X(x)Y(y)

This leads to solutions involving trigonometric, exponential, and special functions (Bessel functions for cylindrical, Legendre polynomials for spherical).


Applications

Poisson's equation appears across science, engineering, and even computer science:

FieldApplicationSource Term
ElectrostaticsCapacitors, electron opticsCharge density \rho/\varepsilon_0
GravitationPlanetary physics, cosmologyMass density 4\pi G\rho_m
Fluid MechanicsPressure in incompressible flowRelated to vorticity
Heat TransferSteady temperature with sourcesHeat generation rate
Image ProcessingImage smoothing, inpaintingDifference from target
Computer GraphicsSurface reconstructionCurvature constraints
Semiconductor PhysicsCharge distribution in devicesDopant concentration
Modern Applications: Poisson image editing is a powerful technique in digital image processing where the Laplacian of an image region is solved to seamlessly blend images or remove objects. The same equation that describes electric fields now powers Photoshop's content-aware fill.

Numerical Methods

Most practical problems require numerical solutions. Common methods include:

  • Finite Difference Method: Approximate derivatives on a grid. The 2D 5-point stencil gives (ϕi+1,j+ϕi1,j+ϕi,j+1+ϕi,j14ϕi,j)/h2=fi,j(\phi_{i+1,j} + \phi_{i-1,j} + \phi_{i,j+1} + \phi_{i,j-1} - 4\phi_{i,j})/h^2 = f_{i,j}
  • Finite Element Method: Approximate solution in terms of basis functions, powerful for complex geometries
  • Spectral Methods: Use Fourier or polynomial basis for high accuracy on smooth problems
  • Multigrid Methods: Accelerate convergence using multiple resolution levels
Iterative Solvers: The discrete Poisson equation leads to large sparse linear systems. Iterative methods like Gauss-Seidel, SOR (Successive Over-Relaxation), and Conjugate Gradient are commonly used, with multigrid achieving optimal O(N) complexity.

Summary

In this introduction, we have learned:

  • Poisson's equation 2ϕ=f\nabla^2 \phi = f relates the Laplacian of a potential to source distributions
  • Laplace's equation 2ϕ=0\nabla^2 \phi = 0 is the special case with no sources
  • The equation arises in electrostatics, gravitation, and many other fields through conservation laws
  • Solutions have important properties: uniqueness, maximum principle, smoothness
  • Boundary conditions (Dirichlet, Neumann, Robin) complete the problem specification
  • Analytical solutions use Green's functions and separation of variables
  • Numerical methods (finite difference, finite element) handle complex real-world problems
Looking Ahead: In the following sections, we will apply Poisson's equation to specific physical problems: electrostatics and capacitor design, gravitational potential calculations, heat conduction with sources, and modern applications in computational science. We will develop both analytical techniques and numerical methods for solving this fundamental equation.
Loading comments...