Everything so far leaned on one comfortable assumption: the forward map was linear,
a matrix
Take seismology: how long a wave takes to travel from an earthquake to a station depends on the subsurface velocity — but the wave also bends along a path that itself depends on the velocity, so doubling a velocity somewhere does not simply double anything. The map from "velocity everywhere" to "arrival times" is nonlinear. This breaks the clean linear machinery: there is no matrix to invert, no single formula. Instead we must iterate — creep toward the answer one improving step at a time.
Write the nonlinear forward model as
— the total squared disagreement between what we measured and what a candidate model predicts. The
best model is wherever
Around a current guess
Fitting the leftover misfit
This is the regularized Gauss–Newton iteration. The
Levenberg–Marquardt method adapts the damping
The iterative recipe, concretely:
Simple enough. But there is a catch that never troubles the linear case, and it is worth its own picture.
A linear least-squares problem has a single, bowl-shaped misfit with one bottom: wherever you start, you slide to the same global optimum. Nonlinear problems are not so kind. Their misfit landscape can have several valleys — multiple local minima — and downhill steps only ever take you to the nearest one.
In the landscape above, a guess that starts on the left rolls into the left valley; a guess on the right rolls into the right valley — and only one of them is the true global minimum. Same data, same algorithm, different starting point, completely different answer. That is why the starting model matters so enormously in nonlinear inversion, and why it never mattered at all before.
In the linear case, least squares hands you the one global optimum and you can relax. Nonlinear inversion offers no such comfort. Because the misfit can have many local minima, different starting guesses can converge to completely different "solutions" that all fit the data reasonably well. The result you get can depend on where you started — a deeply uncomfortable fact if you were hoping for a single objective truth.
This is why practitioners treat nonlinear reconstructions with extra skepticism. They run multiple starts from different initial models to see whether answers agree, impose physical constraints (positivity, smoothness, known bounds) to fence off nonsense valleys, and report the spread of outcomes rather than a single confident number. A nonlinear "solution" quoted with no mention of the starting model or of multiple restarts deserves a raised eyebrow.
Each column of the Jacobian
The trick that makes large-scale nonlinear inversion possible is the adjoint method:
by running the forward model once and a single "adjoint" (time-reversed) model once, you get the
entire gradient
Nonlinear inverse problems are where inverse theory meets its hardest real-world tests. Full-waveform inversion tries to image the Earth from the full wiggles of seismic recordings — not just when a wave arrives, but the entire shape of the recorded waveform. It is so violently nonlinear, and involves so many parameters, that it devours some of the largest supercomputers on Earth. The oil and gas industry runs it for weeks on machines with hundreds of thousands of cores to map reservoirs kilometres underground.
And here is the twist that delights people: training a neural network is itself a giant nonlinear inverse problem. The "data" are the input–output examples, the forward map is the network, and the "model" you are recovering is the enormous vector of weights that reproduces the observed behaviour. Gradient descent, local minima, sensitivity to initialization, the whole family of worries — modern machine learning is inverse theory wearing a new hat, at a staggering scale.
The linear machinery never disappears, though — it lives inside each nonlinear step, because every iteration is just a regularized linear least-squares problem for the update. Nonlinear inversion is linear inversion, done over and over, on a moving target.