[motivation]
## Motivation
### Direct Methods for Constant-Coefficient ODEs
Consider a linear ordinary differential equation with constant coefficients, such as the second-order initial-value problem
\begin{align*}
y'' + 3y' + 2y &= e^{-3t}, \quad t > 0, \\
y(0) &= 1, \quad y'(0) = 0.
\end{align*}
The classical method proceeds in two stages: find the general solution to the homogeneous equation $y'' + 3y' + 2y = 0$ via the characteristic polynomial $\lambda^2 + 3\lambda + 2 = (\lambda + 1)(\lambda + 2) = 0$, then find a particular solution to the non-homogeneous equation by undetermined coefficients or [variation of parameters](/theorems/835), and finally impose initial conditions to determine the constants. This works, but it has two weaknesses. First, the initial conditions are imposed at the very end, after the general solution has been constructed — meaning the work of finding the full general solution is performed even though only one specific solution is needed. Second, the method scales poorly: for higher-order equations, systems of equations, or equations with discontinuous or impulsive forcing terms (such as the Heaviside step function or the Dirac delta), the machinery of undetermined coefficients becomes cumbersome or inapplicable entirely.
What we want is a method that incorporates the initial conditions from the outset and reduces the entire problem — differential equation plus initial data — to algebra in one step.
### The Fourier Transform Attempt
A natural candidate is the [Fourier transform](/page/Fourier%20Transform). If $f: \mathbb{R} \to \mathbb{C}$ is integrable, its Fourier transform $\hat{f}(\xi) = \int_{\mathbb{R}} f(t) e^{-i\xi t} \, d\mathcal{L}^1(t)$ converts differentiation into multiplication by $i\xi$, so a differential equation becomes a polynomial equation in frequency space. However, the Fourier transform requires $f \in L^1(\mathbb{R}, \mathcal{L}^1)$ (or $L^2(\mathbb{R}, \mathcal{L}^1)$ via the Plancherel extension), and the solutions to initial-value problems on $[0, \infty)$ typically grow — or at least do not decay — as $t \to \infty$. For example, the solution $y(t) = e^{-t}$ to the homogeneous problem $y' + y = 0$, $y(0) = 1$ does lie in $L^1([0,\infty))$, but the solution $y(t) = e^t$ to $y' - y = 0$, $y(0) = 1$ does not, and neither does the constant solution $y(t) = 1$ to $y' = 0$, $y(0) = 1$. The Fourier integral simply diverges for these functions.
There is a second, subtler difficulty. Even when the integral converges, the Fourier transform is defined over $(-\infty, \infty)$ and treats the function as a two-sided signal. It has no mechanism for encoding initial conditions at $t = 0$ — the very data that distinguishes one solution of a linear ODE from another. Any transform that hopes to solve initial-value problems must be sensitive to the starting point $t = 0$.
### Exponential Damping and the Half-Line
Both difficulties are resolved by a single modification: restrict the domain of integration to $[0, \infty)$ and introduce a decaying exponential weight $e^{-pt}$ with $\operatorname{Re} p$ large enough to kill the growth of $f$. If $f$ grows at most as fast as $e^{\sigma_0 t}$ for some $\sigma_0 \in \mathbb{R}$, then the product $f(t) e^{-pt}$ decays exponentially whenever $\operatorname{Re} p > \sigma_0$, and the integral
\begin{align*}
\hat{f}(p) = \int_0^\infty f(t) e^{-pt} \, d\mathcal{L}^1(t)
\end{align*}
converges absolutely. This is the Laplace transform. The half-line integration is not merely a convenience — it is the mechanism by which initial conditions enter the calculus. When we integrate $f'(t) e^{-pt}$ by parts over $[0, \infty)$, the boundary term at $t = 0$ produces exactly the initial value $f(0)$, so the derivative rule becomes $\mathcal{L}\{f'\}(p) = p\hat{f}(p) - f(0)$. The initial data is encoded automatically in the algebraic relation.
[/motivation]