Powell's dog leg method

Powell's dog leg method, also called Powell's hybrid method, is an iterative optimisation algorithm for the solution of non-linear least squares problems, introduced in 1970 by Michael J. D.

[1] Similarly to the Levenberg–Marquardt algorithm, it combines the Gauss–Newton algorithm with gradient descent, but it uses an explicit trust region.

At each iteration, if the step from the Gauss–Newton algorithm is within the trust region, it is used to update the current solution.

If not, the algorithm searches for the minimum of the objective function along the steepest descent direction, known as Cauchy point.

If the Cauchy point is outside of the trust region, it is truncated to the boundary of the latter and it is taken as the new solution.

If the Cauchy point is inside the trust region, the new solution is taken at the intersection between the trust region boundary and the line joining the Cauchy point and the Gauss-Newton step (dog leg step).

[2] The name of the method derives from the resemblance between the construction of the dog leg step and the shape of a dogleg hole in golf.

[2] Given a least squares problem in the form with

, Powell's dog leg method finds the optimal point

is the Jacobian matrix, while the steepest descent direction is given by The objective function is linearised along the steepest descent direction To compute the value of the parameter

at the Cauchy point, the derivative of the last expression with respect to

is imposed to be equal to zero, giving

, Powell's dog leg method selects the update step

Construction of the dog leg step
Graph of a strictly concave quadratic function with unique maximum.
Optimization computes maxima and minima.