The Heat Kernel and the 1D Heat Equation #
Main Definitions #
heatKernel α x t: The fundamental solution to the 1D heat equation with diffusivityαheatK α: Helper constant4παappearing in the normalizationa α t: Helper function1/(4αt)appearing in the exponentialc α t: Normalization constant1/√(4παt)
Main Results #
heatKernel_pos: The heat kernel is strictly positive for allxwhenα > 0andt > 0integral_heatKernel_one_gaussian: The heat kernel integrates to one (normalization property)heatKernel_solves_heat_eq: The heat kernel satisfies the heat equation∂u/∂t = α ∂²u/∂x²
Reference #
This formalization follows Chapter 7.2.1, "Partial Differential Equations, A First Course" by Professor Rustom Choksi.
Core Definitions #
The one-dimensional heat kernel (fundamental solution) with diffusivity α.
For α > 0 and t > 0, this function gives the temperature distribution at time t
resulting from a unit point source at x = 0 at time t = 0.
Instances For
Helper constant k = 4πα used in the normalization factor.
Equations
- Heat.heatK α = 4 * Real.pi * α
Instances For
Basic Properties and Positivity #
Property 1: The heat kernel is strictly positive for all x when α > 0 and t > 0.
Normalization Property #
Property 2: The heat kernel integrates to one over all of ℝ.
This shows that the heat kernel is properly normalized and can be interpreted as a probability density function (specifically, a Gaussian distribution).
Derivative Lemmas #
We establish the derivatives of the heat kernel with respect to both space and time variables. These are needed to verify that the heat kernel satisfies the heat equation.
Helper Lemmas for Derivatives #
Time Derivative #
The time derivative of the heat kernel ∂/∂t heatKernel(α, x, t).
First Spatial Derivative #
Second Spatial Derivative #
Auxiliary lemma: derivative of the first spatial derivative's formula.
The second spatial derivative of the heat kernel ∂²/∂x² heatKernel(α, x, t).
Main Theorem: The Heat Equation #
The heat kernel satisfies the one-dimensional heat equation ∂u/∂t = α ∂²u/∂x².
This is the fundamental property that makes it the fundamental solution to the heat equation.
Main Theorem: The heat kernel satisfies the heat equation.
For any `α > 0`, `t > 0`, and `x ∈ ℝ`, we have:
∂/∂t heatKernel(α, x, t) = α * ∂²/∂x² heatKernel(α, x, t)
This establishes that the heat kernel is indeed the fundamental solution
to the one-dimensional heat equation.
Property 4: Convergence to Dirac Delta #
As t → 0⁺, the heat kernel heatKernel(α, x, t) concentrates at the origin and
converges to the Dirac delta distribution δ₀ in the sense of distributions.
More precisely, for any test funciton φ(x)
lim_{t → 0⁺} ∫ heatKernel(α, x, t) · φ(x) dx = φ(0)
This property explains why the heat kernel serves as the fundamental solution:
it represents the evolution of an initial point source of heat at x = 0.
Formal proof: See Section [7.2.3] for the complete formalization of this convergence result.