Partial differential equations

Comprehensive study notes, diagrams, and exam preparation for Partial differential equations.

Partial Differential Equations

Definition

A Partial Differential Equation (PDE) is an equation that involves an unknown function of two or more independent variables and its partial derivatives with respect to those variables. Unlike ordinary differential equations, which involve functions of a single variable, PDEs describe complex phenomena that change over both space and time, such as heat conduction, fluid dynamics, and wave propagation.


Main Content

1. Classification of PDEs

  • PDEs are primarily classified into three types based on the discriminant of the general second-order linear equation: Elliptic, Parabolic, and Hyperbolic.
  • These classifications help determine the behavior of the solution; for example, Elliptic equations (like Laplace's equation) describe steady-state systems, while Parabolic equations (like the Heat equation) describe time-dependent diffusion.

2. The Domain and Boundary Conditions

  • To solve a PDE, one must define the region (domain) over which the variables exist and set specific constraints at the edges of this region.
  • Boundary conditions come in three main forms: Dirichlet (fixing the value at the boundary), Neumann (fixing the derivative/flux at the boundary), and Robin (a combination of both).

3. Numerical Approximation

  • Since many real-world PDEs cannot be solved using exact analytical formulas, we use numerical methods like Finite Difference Methods (FDM).
  • FDM replaces continuous derivatives with algebraic approximations using a discrete grid or "mesh" of points.
Grid representation (x, y):
y
^
|   o---o---o
|   |   |   |
|   o---o---o
|   |   |   |
+-------------> x

(This grid represents a discretization of a 2D space where the PDE is solved at each 'o' point.)


Working / Process

1. Discretization of the Domain

  • The continuous space-time domain is divided into a grid of discrete points (nodes).
  • The spacing between these points, often denoted as Δx or Δt, determines the resolution and accuracy of the numerical simulation.

2. Approximation of Derivatives

  • Derivatives are replaced by finite difference quotients based on Taylor series expansions.
  • For example, a first-order derivative is approximated by: ∂u/∂x ≈ (u[i+1] - u[i]) / Δx.

3. Iterative Solving

  • The resulting algebraic equations are solved either directly using matrix inversion or iteratively (e.g., Jacobi or Gauss-Seidel methods).
  • The solution is updated point-by-point or layer-by-layer until the values converge to a stable result.

Advantages / Applications

  • Heat Transfer: PDEs model how thermal energy distributes through materials, essential for engineering cooling systems and structural analysis.
  • Quantum Mechanics: The Schrödinger equation is a fundamental PDE used to calculate the wave function and probability density of particles.
  • Financial Engineering: The Black-Scholes equation is a PDE used to determine the theoretical price of European-style options in stock markets.

Summary

Partial differential equations are powerful mathematical tools that use partial derivatives to model multi-variable systems across space and time. Because they are often too complex for exact solutions, numerical methods like the Finite Difference Method are used to approximate solutions by discretizing the problem into a computational grid. Key terms to remember include boundary conditions, discretization, grid points, and convergence.