Imagine you are blindfolded on a hilly landscape and want to reach the lowest valley. You cannot see the slope — you can only measure the altitude at the exact spot where you stand. How do you navigate?
That is the core challenge of derivative-free optimization: minimizing a function when its gradient is unknown, expensive to compute, or too noisy to trust. The scenario is more common than it sounds — engineering simulations, drug-dosing models, machine-learning hyperparameter tuning, and countless physical experiments live in this blind-hiker regime.
In 1965, statisticians John Nelder and Roger Mead published a beautifully simple answer: send a small team of hikers carrying a deformable triangle. Each hiker stands at a corner and reports their altitude. The triangle then reshapes — reflecting the worst corner over the opposite edge, expanding if the reflected spot is even better, or contracting toward the best corner if the terrain gets difficult. Over many steps the triangle homes in on a valley floor.
This shape is called a simplex (the generalization of a triangle to any number of dimensions: a tetrahedron in 3D, and so on). The method asks for nothing but the ability to evaluate the function at a point — no formula, no derivative, no gradient descent.
Comments
Loading comments...