The Laplace Transform
A dictionary that translates differential equations into algebra — turning derivatives into multiplication so a hard calculus problem becomes an easy one, then translates the answer back.
Prerequisites: Ordinary Differential Equations, Improper Integrals
Solving a differential equation directly — chasing derivatives and integrals through a messy equation — is often much harder than it needs to be. The Laplace transform is a trick with an oddly powerful payoff: it re-expresses a function of time as a function of a new variable , and under this re-expression, taking a derivative turns into ordinary multiplication. A hard calculus problem becomes an easy algebra problem in the new variable; you solve the algebra, then translate the answer back into a function of time. It's exactly like converting numbers to logarithms to turn multiplication into addition, solving the easy addition problem, then converting back.
The analogy: logarithms for calculus
Before calculators, multiplying two large numbers by hand was slow, but adding their logarithms and then exponentiating the sum was fast — logarithms turn a hard operation (multiplication) into an easy one (addition), at the cost of translating into and back out of "log space." The Laplace transform does the same trick one level up: it turns the hard operation of differentiation into the easy operation of multiplication by , at the cost of translating into and back out of "-space." You do the easy algebra in -space, then transform back to get your answer in the original variable.
The mechanics, one symbol at a time
The Laplace transform of a function defined for is
an improper integral that converts the time-function into a new function of a complex variable . In words: it weights every value of by a decaying exponential and adds them all up — a kind of "spectral fingerprint" of the function that exists as long as doesn't grow faster than the exponential decay can suppress.
The key property that makes this useful is what happens to a derivative:
In plain English: differentiating in the time domain corresponds to multiplying by (and subtracting off the initial value) in the transformed domain. So a differential equation involving , , etc., becomes, after transforming, a purely algebraic equation in and — no derivatives left to wrestle with. Solve for algebraically, then look up (or compute) the function whose transform is to get back — the inverse transform.
Worked example 1: solving continuous discounting via transform
Take the simple ODE from continuous compounding, , . Transforming both sides: , so , giving . Looking this up against the standard table entry immediately gives — the same exponential-growth answer as before, but reached by pure algebra in -space rather than by directly integrating the ODE.
Worked example 2: a numeric transform value
For a cash flow model with (a decaying rate of $5, decaying at rate 2 per year), the transform (using with ) is . Evaluating at : . This single number is the "weighted total" of the cash flow stream as seen through a discount rate of 3 — in fact, setting (a constant discount rate) and equal to a continuous cash flow makes exactly the present value of that cash flow stream, which is why the Laplace transform and continuous-time discounting are the same mathematical object wearing different names.
The functions being transformed here are almost always exponentials or sums of exponentials — adjust the decay rate and notice this is the same family of curves the Laplace transform is built to handle exactly, term by term.
What this means in practice
The Laplace transform is the standard tool for solving linear ODEs and PDEs with known initial conditions — exactly the setup that appears in interest-rate models, queueing systems, and any linear system's transient response. In derivatives pricing it's a close cousin of the characteristic-function methods (Fourier transforms of the log-price density) used in fast option-pricing algorithms; both work by moving a hard problem into a transformed space where it becomes tractable algebra, then inverting.
The Laplace transform converts differentiation into multiplication by , turning a differential equation into an algebraic one; solving the algebra and inverting the transform is often far easier than solving the original equation directly.
A common mistake is forgetting that the Laplace transform only exists (converges) for functions that don't grow faster than some exponential rate — applying transform tables mechanically to a function that blows up too fast produces an integral that never converges, and the resulting "" is meaningless outside the region of where convergence actually holds. Always check the function's growth rate, or at least the transform's stated region of convergence, before trusting an inverted result.
Related concepts
Practice in interviews
Further reading
- Kreyszig, Advanced Engineering Mathematics, ch. 6
- Schiff, The Laplace Transform: Theory and Applications, ch. 1