NEWUOA

NEWUOA[1] is a numerical optimization algorithm by Michael J. D. Powell. It is also the name of Powell's Fortran 77 implementation of the algorithm.

NEWUOA solves unconstrained optimization problems without using derivatives, which makes it a derivative-free algorithm. The algorithm is iterative, and exploits trust region technique. On each iteration, the algorithm establishes a model function by quadratic interpolation, and then minimizes within a trust region.

One important feature of NEWUOA algorithm is the least Frobenius norm updating [2] technique. Suppose that the objective function has variables, and one wants to uniquely determine the quadratic model by purely interpolating the function values of , then it is necessary to evaluate at points, as a quadratic polynomial of variables has this amount of independent coefficients. But this is impractical when is large, because the function values are supposed to be expensive in derivative-free optimization. In NEWUOA, the model interpolates only (an integer between and , typically of order ) function values of , and the remaining degree of freedom is taken up by minimizing the Frobenius norm of . This technique mimics the least change secant updates [3] for Quasi-Newton methods, and can be considered as the derivative-free version of PSB update (Powell's Symmetric Broyden update).[4]

To construct the models, NEWUOA maintains a set of interpolation points throughout the iterations. The update of this set is another feature of NEWUOA.[1]

NEWUOA algorithm was developed from UOBYQA (Unconstrained Optimization BY Quadratic Approximation).[5][6] A major difference between them is that UOBYQA constructs quadratic models by interpolating the objective function at points.

NEWUOA software was released on December 16, 2004.[7] It can solve unconstrained optimization problems of a few hundreds variables to high precision without using derivatives.[1] In the software, is set to by default.[6]

Other derivative-free optimization algorithms by Powell include COBYLA, UOBYQA, BOBYQA, and LINCOA.[7] BOBYQA and LINCOA are extensions of NEWUOA to bound constrained and linearly constrained optimization respectively.

Powell did not explain how he coined the name "NEWUOA" either in the introducing report [1] or in the software,[6] although COBYLA, UOBYQA, BOBYQA and LINCOA are all named by acronyms. Probably "NEWUOA" means "NEW Unconstrained Optimization Algorithm".

The NEWUOA software is distributed under The GNU Lesser General Public License (LGPL).[6]

See also

References

  1. 1 2 3 4 Powell, M. J. D. (November 2004). The NEWUOA software for unconstrained optimization without derivatives (PDF) (Report). Department of Applied Mathematics and Theoretical Physics, Cambridge University. DAMTP 2004/NA05. Retrieved 2014-01-14.
  2. Powell, M. J. D. (2004). "Least Frobenius norm updating of quadratic models that satisfy interpolation conditions". Mathematical Programming. Springer. 100: 183–215. doi:10.1007/s10107-003-0490-7.
  3. Dennis, Jr., J. E.; Schnabel, R. B. (1979). "Least Change Secant Updates for Quasi-Newton Methods". SIAM Review. SIAM. 21: 443–459. doi:10.1137/1021091. JSTOR 2030103.
  4. Powell, M. J. D. (2013). "Beyond symmetric Broyden for updating quadratic models in minimization without derivatives". Mathematical Programming. Springer. 138: 475–500. doi:10.1007/s10107-011-0510-y.
  5. Powell, M. J. D. (2002). "UOBYQA: unconstrained optimization by quadratic approximation". Mathematical Programming. Springer. 92: 555–582. doi:10.1007/s101070100290.
  6. 1 2 3 4 "Source code of NEWUOA software". Retrieved 2014-01-14.
  7. 1 2 "A repository of Professor M. J. D. Powell's software". Retrieved 2014-01-14.

External links

This article is issued from Wikipedia - version of the 11/14/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.