Gradient Descent Revisited

Total Page:16

File Type:pdf, Size:1020Kb

Gradient Descent Revisited Gradient descent revisited Geoff Gordon & Ryan Tibshirani Optimization 10-725 / 36-725 1 Gradient descent n Recall that we have f : R ! R, convex and differentiable, want to solve min f(x); x2Rn i.e., find x? such that f(x?) = min f(x) (0) n Gradient descent: choose initial x 2 R , repeat: (k) (k−1) (k−1) x = x − tk · rf(x ); k = 1; 2; 3;::: Stop at some point 2 ● ● ● ● ● 3 Interpretation At each iteration, consider the expansion 1 f(y) ≈ f(x) + rf(x)T (y − x) + ky − xk2 2t 2 1 Quadratic approximation, replacing usual r f(x) by t I f(x) + rf(x)T (y − x) linear approximation to f 1 2 2t ky − xk proximity term to x, with weight 1=(2t) Choose next point y = x+ to minimize quadratic approximation x+ = x − trf(x) 4 ● ● Blue point is x, red point is x+ 5 Outline Today: • How to choose step size tk • Convergence under Lipschitz gradient • Convergence under strong convexity • Forward stagewise regression, boosting 6 Fixed step size Simply take tk = t for all k = 1; 2; 3;:::, can diverge if t is too big. 2 2 Consider f(x) = (10x1 + x2)=2, gradient descent after 8 steps: ● 20 ● 10 ● 0 * −10 −20 −20 −10 0 10 20 7 Can be slow if t is too small. Same example, gradient descent after 100 steps: ●●● 20 ●● ●● ● ● ● ● ● ● ● ● ● ● ● ● ● 10 ● ● ● ● 0 * −10 −20 −20 −10 0 10 20 8 Same example, gradient descent after 40 appropriately sized steps: ● 20 ● ● ● ● ● ● ● 10 ● ● ● ● ● ● ● ● ● ● ● 0 * −10 −20 −20 −10 0 10 20 This porridge is too hot! { too cold! { juuussst right. Convergence analysis later will give us a better idea 9 Backtracking line search A way to adaptively choose the step size • First fix a parameter 0 < β < 1 • Then at each iteration, start with t = 1, and while t f(x − trf(x)) > f(x) − krf(x)k2; 2 update t = βt Simple and tends to work pretty well in practice 10 Interpretation (From B & V page 465) For us ∆x = −∇f(x), α = 1=2 11 Backtracking picks up roughly the right step size (13 steps): ● 20 ● ● ● 10 ● ● ● ● ●● ●● 0 * −10 −20 −20 −10 0 10 20 Here β = 0:8 (B & V recommend β 2 (0:1; 0:8)) 12 Exact line search At each iteration, do the best we can along the direction of the gradient, t = argmin f(x − srf(x)) s≥0 Usually not possible to do this minimization exactly Approximations to exact line search are often not much more efficient than backtracking, and it's not worth it 13 Convergence analysis n Assume that f : R ! R is convex and differentiable, and additionally krf(x) − rf(y)k ≤ Lkx − yk for any x; y I.e., rf is Lipschitz continuous with constant L > 0 Theorem: Gradient descent with fixed step size t ≤ 1=L satisfies kx(0) − x?k2 f(x(k)) − f(x?) ≤ 2tk I.e., gradient descent has convergence rate O(1=k) I.e., to get f(x(k)) − f(x?) ≤ , need O(1/) iterations 14 Proof Key steps: • rf Lipschitz with constant L ) L f(y) ≤ f(x) + rf(x)T (y − x) + ky − xk2 all x; y 2 • Plugging in y = x − trf(x), Lt f(y) ≤ f(x) − (1 − )tkrf(x)k2 2 • Letting x+ = x − trf(x) and taking 0 < t ≤ 1=L, t f(x+) ≤ f(x?) + rf(x)T (x − x?) − krf(x)k2 2 1 = f(x?) + kx − x?k2 − kx+ − x?k2 2t 15 • Summing over iterations: k X 1 (f(x(i)) − f(x?)) ≤ kx(0) − x?k2 − kx(k) − x?k2 2t i=1 1 ≤ kx(0) − x?k2 2t • Since f(x(k)) is nonincreasing, k 1 X kx(0) − x?k2 f(x(k)) − f(x?) ≤ (f(x(i)) − f(x?)) ≤ k 2tk i=1 16 Convergence analysis for backtracking n Same assumptions, f : R ! R is convex and differentiable, and rf is Lipschitz continuous with constant L > 0 Same rate for a step size chosen by backtracking search Theorem: Gradient descent with backtracking line search satis- fies kx(0) − x?k2 f(x(k)) − f(x?) ≤ 2tmink where tmin = minf1; β=Lg If β is not too small, then we don't lose much compared to fixed step size (β=L vs 1=L) 17 Strong convexity Strong convexity of f means for some d > 0, r2f(x) dI for any x Better lower bound than that from usual convexity: d f(y) ≥ f(x) + rf(x)T (y − x) + ky − xk2 all x; y 2 Under Lipschitz assumption as before, and also strong convexity: Theorem: Gradient descent with fixed step size t ≤ 2=(d + L) or with backtracking line search search satisfies L f(x(k)) − f(x?) ≤ ck kx(0) − x?k2 2 where 0 < c < 1 18 I.e., rate with strong convexity is O(ck), exponentially fast! I.e., to get f(x(k)) − f(x?) ≤ , need O(log(1/)) iterations Called linear convergence, because looks linear on a semi-log plot: (From B & V page 487) Constant c depends adversely on condition number L=d (higher condition number ) slower rate) 19 How realistic are these conditions? How realistic is Lipschitz continuity of rf? • This means r2f(x) LI 1 2 • E.g., consider f(x) = 2 ky − Axk (linear regression). Here 2 T 2 2 r f(x) = A A, so rf Lipschitz with L = σmax(A) = kAk How realistic is strong convexity of f? • Recall this is r2f(x) dI 1 2 2 T • E.g., again consider f(x) = 2 ky − Axk , so r f(x) = A A, 2 and we need d = σmin(A) • If A is wide, then σmin(A) = 0, and f can't be strongly convex (E.g., A = ) • Even if σmin(A) > 0, can have a very large condition number L=d = σmax(A)/σmin(A) 20 Practicalities Stopping rule: stop when krf(x)k is small • Recall rf(x?) = 0 • If f is strongly convex with parameter d, then p krf(x)k ≤ 2d ) f(x) − f(x?) ≤ Pros and cons: • Pro: simple idea, and each iteration is cheap • Pro: Very fast for well-conditioned, strongly convex problems • Con: Often slow, because interesting problems aren't strongly convex or well-conditioned • Con: can't handle nondifferentiable functions 21 Forward stagewise regression 1 2 Let's stick with f(x) = 2 ky − Axk , linear regression A is n × p, its columns A1;:::Ap are predictor variables Forward stagewise regression: start with x(0) = 0, repeat: T (k−1) • Find variable i such that jAi rj is largest, for r = y − Ax (largest absolute correlation with residual) (k) (k−1) T • Update xi = xi + γ · sign(Ai r) Here γ > 0 is small and fixed, called learning rate This looks kind of like gradient descent 22 Steepest descent Close cousin to gradient descent, just change the choice of norm. Let q; r be complementary (dual): 1=q + 1=r = 1 Updates are x+ = x + t · ∆x, where ∆x = krf(x)kr · u u = argmin rf(x)T v kvkq≤1 • If q = 2, then ∆x = −∇f(x), gradient descent • If q = 1, then ∆x = −@f(x)=@xi · ei, where @f @f (x) = max (x) = krf(x)k1 @xi j=1;:::n @xj Normalized steepest descent just takes ∆x = u (unit q-norm) 23 Equivalence Normalized steepest descent with 1-norm: updates are + n @f o xi = xi − t · sign (x) @xi where i is the largest component of rf(x) in absolute value Compare forward stagewise: updates are + T xi = xi + γ · sign(Ai r); r = y − Ax 1 2 T Recall here f(x) = 2 ky − Axk , so rf(x) = −A (y − Ax) and T @f(x)=@xi = −Ai (y − Ax) Forward stagewise regression is exactly normalized steepest descent under 1-norm 24 Early stopping and regularization Forward stagewise is like a slower version of forward stepwise If we stop early, i.e., don't continue all the way to the least squares solution, then we get a sparse approximation ... can this be used as a form of regularization? Recall lasso problem: 1 2 min ky − Axk subject to kxk1 ≤ t x2Rp 2 Solution x?(s), as function of s, also exhibits varying amounts of regularization How do they compare? 25 (From ESL page 609) For some problems (some y; A), with a small enough step size, forward stagewise iterates trace out lasso solution path! 26 Gradient boosting n Given observations y = (y1; : : : yn) 2 R , associated predictor p measurements ai 2 R , i = 1; : : : n Want to construct a flexible (nonlinear) model for y based on predictors. Weighted sum of trees: m X yi ≈ y^i = γj · Tj(ai); i = 1; : : : n j=1 Each tree Tj inputs predictor measurements ai, outputs prediction. Trees are typically very short ... 27 Pick a loss function L that reflects task; e.g., for continuous y, 2 could take L(yi; y^i) = (yi − y^i) Want to solve n M X X min L yi; γj · Tj(ai) γ2 M R i=1 j=1 Indexes all trees of a fixed size (e.g., depth = 5), so M is huge Space is simply too big to optimize Gradient boosting: combines gradient descent idea with forward model building First think of minimization as min f(^y), function of predictions y^ (subject to y^ coming from trees) 28 (0) Start with initial model, i.e., fit a single tree y^ = T0. Repeat: • Evaluate gradient g at latest prediction y^(k−1), @L(yi; y^i) gi = ; i = 1; : : : n @y^i (k−1) y^i=^yi • Find a tree Tk that is close to −g, i.e., Tk solves n X 2 min (−gi − T (ai)) T i=1 Not hard to (approximately) solve for a single tree • Update our prediction: (k) (k−1) y^ =y ^ + γk · Tk Note: predictions are weighted sums of trees, as desired! 29 Lower bound Remember O(1=k) rate for gradient descent over problem class: convex, differentiable functions with Lipschitz continuous gradients First-order method: iterative method, updates x(k) in x(0) + spanfrf(x(0)); rf(x(1));::: rf(x(k−1))g Theorem (Nesterov): For any k ≤ (n − 1)=2 and any starting point x(0), there is a function f in the problem class such that any first-order method satisfies 3Lkx(0) − x?k2 f(x(k)) − f(x?) ≥ 32(k + 1)2 Can we achieve a rate O(1=k2)? Answer: yes, and more! 30 References • S.
Recommended publications
  • Lec9p1, ORF363/COS323
    Lec9p1, ORF363/COS323 Instructor: Amir Ali Ahmadi Fall 2014 This lecture: • Multivariate Newton's method TAs: Y. Chen, G. Hall, • Rates of convergence J. Ye • Modifications for global convergence • Nonlinear least squares ○ The Gauss-Newton algorithm • In the previous lecture, we saw the general framework of descent algorithms, with several choices for the step size and the descent direction. We also discussed convergence issues associated with these methods and provided some formal definitions for studying rates of convergence. Our focus before was on gradient descent methods and variants, which use only first order information (first order derivatives). These algorithms achieved a linear rate of convergence. • Today, we see a wonderful descent method with superlinear (in fact quadratic) rate of convergence: the Newton algorithm. This is a generalization of what we saw a couple of lectures ago in dimension one for root finding and function minimization. • The Newton's method is nothing but a descent method with a specific choice of a descent direction; one that iteratively adjusts itself to the local geometry of the function to be minimized. • In practice, Newton's method can converge with much fewer iterations than gradient methods. For example, for quadratic functions, while we saw that gradient methods can zigzag for a long time (depending on the underlying condition number), Newton's method will always get the optimal solution in a single step. • The cost that we pay for fast convergence is the need to (i) access second order information (i.e., derivatives of first and second order), and (ii) solve a linear system of equations at every step of the algorithm.
    [Show full text]
  • Use of the NLPQLP Sequential Quadratic Programming Algorithm to Solve Rotorcraft Aeromechanical Constrained Optimisation Problems
    NASA/TM—2016–216632 Use of the NLPQLP Sequential Quadratic Programming Algorithm to Solve Rotorcraft Aeromechanical Constrained Optimisation Problems Jane Anne Leyland Ames Research Center Moffett Field, California April 2016 This page is required and contains approved text that cannot be changed. NASA STI Program ... in Profile Since its founding, NASA has been dedicated • CONFERENCE PUBLICATION. to the advancement of aeronautics and Collected papers from scientific and space science. The NASA scientific and technical conferences, symposia, technical information (STI) program plays a seminars, or other meetings sponsored key part in helping NASA maintain this or co-sponsored by NASA. important role. • SPECIAL PUBLICATION. Scientific, The NASA STI program operates under the technical, or historical information from auspices of the Agency Chief Information NASA programs, projects, and Officer. It collects, organizes, provides for missions, often concerned with subjects archiving, and disseminates NASA’s STI. The having substantial public interest. NASA STI program provides access to the NTRS Registered and its public interface, • TECHNICAL TRANSLATION. the NASA Technical Reports Server, thus English-language translations of foreign providing one of the largest collections of scientific and technical material aeronautical and space science STI in the pertinent to NASA’s mission. world. Results are published in both non- NASA channels and by NASA in the NASA Specialized services also include STI Report Series, which includes the organizing and publishing research following report types: results, distributing specialized research announcements and feeds, providing • TECHNICAL PUBLICATION. Reports of information desk and personal search completed research or a major significant support, and enabling data exchange phase of research that present the results services.
    [Show full text]
  • A Sequential Quadratic Programming Algorithm with an Additional Equality Constrained Phase
    A Sequential Quadratic Programming Algorithm with an Additional Equality Constrained Phase Jos´eLuis Morales∗ Jorge Nocedal † Yuchen Wu† December 28, 2008 Abstract A sequential quadratic programming (SQP) method is presented that aims to over- come some of the drawbacks of contemporary SQP methods. It avoids the difficulties associated with indefinite quadratic programming subproblems by defining this sub- problem to be always convex. The novel feature of the approach is the addition of an equality constrained phase that promotes fast convergence and improves performance in the presence of ill conditioning. This equality constrained phase uses exact second order information and can be implemented using either a direct solve or an iterative method. The paper studies the global and local convergence properties of the new algorithm and presents a set of numerical experiments to illustrate its practical performance. 1 Introduction Sequential quadratic programming (SQP) methods are very effective techniques for solv- ing small, medium-size and certain classes of large-scale nonlinear programming problems. They are often preferable to interior-point methods when a sequence of related problems must be solved (as in branch and bound methods) and more generally, when a good estimate of the solution is available. Some SQP methods employ convex quadratic programming sub- problems for the step computation (typically using quasi-Newton Hessian approximations) while other variants define the Hessian of the SQP model using second derivative informa- tion, which can lead to nonconvex quadratic subproblems; see [27, 1] for surveys on SQP methods. ∗Departamento de Matem´aticas, Instituto Tecnol´ogico Aut´onomode M´exico, M´exico. This author was supported by Asociaci´onMexicana de Cultura AC and CONACyT-NSF grant J110.388/2006.
    [Show full text]
  • Strongly Polynomial Algorithm for the Intersection of a Line with a Polymatroid Jean Fonlupt, Alexandre Skoda
    Strongly polynomial algorithm for the intersection of a line with a polymatroid Jean Fonlupt, Alexandre Skoda To cite this version: Jean Fonlupt, Alexandre Skoda. Strongly polynomial algorithm for the intersection of a line with a polymatroid. Research Trends in Combinatorial Optimization, Springer Berlin Heidelberg, pp.69-85, 2009, 10.1007/978-3-540-76796-1_5. hal-00634187 HAL Id: hal-00634187 https://hal.archives-ouvertes.fr/hal-00634187 Submitted on 20 Oct 2011 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Strongly polynomial algorithm for the intersection of a line with a polymatroid Jean Fonlupt1 and Alexandre Skoda2 1 Equipe Combinatoire et Optimisation. CNRS et Universit´eParis6 [email protected] 2 Equipe Combinatoire et Optimisation. CNRS et Universit´eParis6 France Telecom R&D. Sophia Antipolis [email protected] Summary. We present a new algorithm for the problem of determining the inter- N section of a half-line Δu = {x ∈ IR | x = λu for λ ≥ 0} with a polymatroid. We then propose a second algorithm which generalizes the first algorithm and solves a parametric linear program. We prove that these two algorithms are strongly poly- nomial and that their running time is O(n8 + γn7)whereγ is the time for an oracle call.
    [Show full text]
  • Hybrid Algorithms for On-Line and Combinatorial Optimization Problems
    Hybrid Algorithms for On-Line Search and Combinatorial Optimization Problems. Yury V. Smirnov May 28, 1997 CMU-CS-97-171 Submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213 Copyright c 1997 Yury V. Smirnov All rights reserved This research is sponsored in part by the National Science Foundation under grant number IRI-9502548. The views and conclusions contained in this document are those of the authors and should not be interpreted as representing the official policies, either expressed or implied, of the sponsoring organizations or the U.S. government. Keywords: Hybrid Algorithms, Cross-Fertilization, Agent-Centered Search, Limited Lookahead, Pigeonhole Principle, Linear Programming Relaxation. “ Each problem I solved became a pattern, that I used later to solve other problems.” Ren´e Descartes To my wife, Tanya, and my sons, Nick and Michael ii Abstract By now Artificial Intelligence (AI), Theoretical Computer Science (CS theory) and Opera- tions Research (OR) have investigated a variety of search and optimization problems. However, methods from these scientific areas use different problem descriptions, models, and tools. They also address problems with particular efficiency requirements. For example, approaches from CS theory are mainly concerned with the worst-case scenarios and are not focused on empirical performance. A few efforts have tried to apply methods across areas. Usually a significant amount of work is required to make different approaches “talk the same language,” be suc- cessfully implemented, and, finally, solve the actual same problem with an overall acceptable efficiency. This thesis presents a systematic approach that attempts to advance the state of the art in the transfer of knowledge across the above mentioned areas.
    [Show full text]
  • Final Exam Guide Guide
    MATH 408 FINAL EXAM GUIDE GUIDE This exam will consist of three parts: (I) Linear Least Squares, (II) Quadratic Optimization, and (III) Optimality Conditions and Line Search Methods. The topics covered on the first two parts ((I) Linear Least Squares and (II) Quadratic Optimization) are identical in content to the two parts of the midterm exam. Please use the midterm exam study guide to prepare for these questions. A more detailed description of the third part of the final exam is given below. III Optimality Conditions and Line search methods. 1 Theory Question: For this question you will need to review all of the vocabulary words as well as the theorems on the weekly guides for Elements of Multivariable Calculus, Optimality Conditions for Unconstrained Problems, and Line search methods. You may be asked to provide statements of first- and second-order optimality conditions for unconstrained problems. In addition, you may be asked about the role of convexity in optimization, how it is detected, as well as first- and second- order conditions under which it is satisfied. You may be asked to describe what a descent direction is, as well as, what the Newton and the Cauchy (gradient descent) directions are. You need to know what the backtracking line-search is, as well as the convergence guarantees of the line search methods. 2 Computation: All the computation needed for Linear Least Squares and Quadratic Optimization is fair game for this question. Mostly, however, you will be asked to compute gradients and Hessians, locate and classify stationary points for specific optimizations problems, as well as test for the convexity of a problem.
    [Show full text]
  • Mechanical Identification of Materials and Structures with Optical Methods
    materials Article Mechanical Identification of Materials and Structures with Optical Methods and Metaheuristic Optimization Elisa Ficarella 1, Luciano Lamberti 1,* and Sadik Ozgur Degertekin 2 1 Dipartimento di Meccanica, Matematica e Management, Politecnico di Bari, 70126 Bari, Italy 2 Department of Civil Engineering, Dicle University, 21280 Diyarbakır, Turkey * Correspondence: [email protected]; Tel.: +39-080-5962774 Received: 27 May 2019; Accepted: 24 June 2019; Published: 2 July 2019 Abstract: This study presents a hybrid framework for mechanical identification of materials and structures. The inverse problem is solved by combining experimental measurements performed by optical methods and non-linear optimization using metaheuristic algorithms. In particular, we develop three advanced formulations of Simulated Annealing (SA), Harmony Search (HS) and Big Bang-Big Crunch (BBBC) including enhanced approximate line search and computationally cheap gradient evaluation strategies. The rationale behind the new algorithms—denoted as Hybrid Fast Simulated Annealing (HFSA), Hybrid Fast Harmony Search (HFHS) and Hybrid Fast Big Bang-Big Crunch (HFBBBC)—is to generate high quality trial designs lying on a properly selected set of descent directions. Besides hybridizing SA/HS/BBBC metaheuristic search engines with gradient information and approximate line search, HS and BBBC are also hybridized with an enhanced 1-D probabilistic search derived from SA. The results obtained in three inverse problems regarding composite and transversely isotropic hyperelastic materials/structures with up to 17 unknown properties clearly demonstrate the validity of the proposed approach, which allows to significantly reduce the number of structural analyses with respect to previous SA/HS/BBBC formulations and improves robustness of metaheuristic search engines.
    [Show full text]
  • A Line-Search Descent Algorithm for Strict Saddle Functions with Complexity Guarantees∗
    A LINE-SEARCH DESCENT ALGORITHM FOR STRICT SADDLE FUNCTIONS WITH COMPLEXITY GUARANTEES∗ MICHAEL O'NEILL AND STEPHEN J. WRIGHT Abstract. We describe a line-search algorithm which achieves the best-known worst-case com- plexity results for problems with a certain \strict saddle" property that has been observed to hold in low-rank matrix optimization problems. Our algorithm is adaptive, in the sense that it makes use of backtracking line searches and does not require prior knowledge of the parameters that define the strict saddle property. 1 Introduction. Formulation of machine learning (ML) problems as noncon- vex optimization problems has produced significant advances in several key areas. While general nonconvex optimization is difficult, both in theory and in practice, the problems arising from ML applications often have structure that makes them solv- able by local descent methods. For example, for functions with the \strict saddle" property, nonconvex optimization methods can efficiently find local (and often global) minimizers [16]. In this work, we design an optimization algorithm for a class of low-rank matrix problems that includes matrix completion, matrix sensing, and Poisson prinicipal component analysis. Our method seeks a rank-r minimizer of the function f(X), where f : Rn×m ! R. The matrix X is parametrized explicitly as the outer product of two matrices U 2 Rn×r and V 2 Rm×r, where r ≤ min(m; n). We make use throughout of the notation U (1) W = 2 (m+n)×r: V R The problem is reformulated in terms of W and an objective function F as follows: (2) min F (W ) := f(UV T ); where W , U, V are related as in (1).
    [Show full text]
  • Newton Method for Stochastic Control Problems Emmanuel Gobet, Maxime Grangereau
    Newton method for stochastic control problems Emmanuel Gobet, Maxime Grangereau To cite this version: Emmanuel Gobet, Maxime Grangereau. Newton method for stochastic control problems. 2021. hal- 03108627 HAL Id: hal-03108627 https://hal.archives-ouvertes.fr/hal-03108627 Preprint submitted on 13 Jan 2021 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Newton method for stochastic control problems ∗ Emmanuel GOBET y and Maxime GRANGEREAU z Abstract We develop a new iterative method based on Pontryagin principle to solve stochastic control problems. This method is nothing else than the Newton method extended to the framework of stochastic controls, where the state dynamics is given by an ODE with stochastic coefficients. Each iteration of the method is made of two ingredients: computing the Newton direction, and finding an adapted step length. The Newton direction is obtained by solving an affine-linear Forward-Backward Stochastic Differential Equation (FBSDE) with random coefficients. This is done in the setting of a general filtration. We prove that solving such an FBSDE reduces to solving a Riccati Backward Stochastic Differential Equation (BSDE) and an affine-linear BSDE, as expected in the framework of linear FBSDEs or Linear-Quadratic stochastic control problems.
    [Show full text]
  • Sequential Quadratic Programming Methods∗
    SEQUENTIAL QUADRATIC PROGRAMMING METHODS∗ Philip E. GILLy Elizabeth WONGy UCSD Department of Mathematics Technical Report NA-10-03 August 2010 Abstract In his 1963 PhD thesis, Wilson proposed the first sequential quadratic programming (SQP) method for the solution of constrained nonlinear optimization problems. In the intervening 48 years, SQP methods have evolved into a powerful and effective class of methods for a wide range of optimization problems. We review some of the most prominent developments in SQP methods since 1963 and discuss the relationship of SQP methods to other popular methods, including augmented Lagrangian methods and interior methods. Given the scope and utility of nonlinear optimization, it is not surprising that SQP methods are still a subject of active research. Recent developments in methods for mixed-integer nonlinear programming (MINLP) and the minimization of functions subject to differential equation constraints has led to a heightened interest in methods that may be \warm started" from a good approximate solution. We discuss the role of SQP methods in these contexts. Key words. Large-scale nonlinear programming, SQP methods, nonconvex pro- gramming, quadratic programming, KKT systems. AMS subject classifications. 49J20, 49J15, 49M37, 49D37, 65F05, 65K05, 90C30 1. Introduction This paper concerns the formulation of methods for solving the smooth nonlinear pro- grams that arise as subproblems within a method for mixed-integer nonlinear programming (MINLP). In general, this subproblem has both linear and nonlinear constraints, and may be written in the form minimize f(x) n x2R 8 9 < x = (1.1) subject to ` ≤ Ax ≤ u; : c(x) ; where f(x) is a linear or nonlinear objective function, c(x) is a vector of m nonlinear constraint functions ci(x), A is a matrix, and l and u are vectors of lower and upper bounds.
    [Show full text]
  • An Efficient Sequential Quadratic Programming Algorithm For
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Elsevier - Publisher Connector Journal of Computational and Applied Mathematics 175 (2005) 447–464 www.elsevier.com/locate/cam An efficient sequential quadratic programming algorithm for nonlinear programming Zhibin Zhu∗ Department of Computational Science and Mathematics, Guilin Institute of Electronic Technology, No. 1, JinJi Road, Guilin 541004, PR China Received 23 November 2003; received in revised form 27 June 2004 Abstract In this paper, a new feasible sequential quadratic programming (FSQP) algorithm is proposed to solve the nonlinear programming, where a feasible descent direction is obtained by solving only one QP subproblem.In order to avoid Maratos effect, a high-order revised direction is computed by solving a linear system with involving some “active” constraints.The theoretical analysis shows that global and superlinear convergence can be deduced. © 2004 Elsevier B.V. All rights reserved. Keywords: Inequality constrained optimization; Method of feasible direction; SQP algorithm; Global convergence; Superlinear convergence rate 1. Introduction Consider the following inequality constrained nonlinear programming problem: min f(x) s.t. g(x)0, (1.1) where f : Rn → R,g : Rn → Rm are continuously differentiable.Such problems arise in a variety of applications in science and engineering.The method of feasible directions (MFD) is widely acknowledged to be among the most successful algorithms available for solving problem (1.1). ∗ Tel.: 07735608612; fax: 07735601519. E-mail address: [email protected] (Z.Zhu). 0377-0427/$ - see front matter © 2004 Elsevier B.V. All rights reserved. doi:10.1016/j.cam.2004.07.001 448 Z.
    [Show full text]
  • NORTHWESTERN UNIVERSITY Inexact Sequential Quadratic
    NORTHWESTERN UNIVERSITY Inexact Sequential Quadratic Programming Methods for Large-Scale Nonlinear Optimization A DISSERTATION SUBMITTED TO THE GRADUATE SCHOOL IN PARTIAL FULFILLMENT OF THE REQUIREMENTS for the degree DOCTOR OF PHILOSOPHY Field of Industrial Engineering and Management Sciences By Frank Edward Curtis EVANSTON, ILLINOIS June 2007 2 c Copyright by Frank Edward Curtis 2007 ⃝ All rights reserved 3 ABSTRACT Inexact Sequential Quadratic Programming Methods for Large-Scale Nonlinear Optimization Frank Edward Curtis This thesis concerns the development of robust algorithms for large-scale nonlinear pro- gramming. Despite recent advancements in high-performance computing power, classes of problems exist that continue to challenge the practical limits of contemporary optimization methods. The focus of this dissertation is the design and analysis of algorithms intended to achieve economy of computation for the solution of such problems, where, for ease of presentation, the discussion is framed in the context of equality constrained optimization. The first part of this thesis concerns the development of a globally convergent inexact Sequential Quadratic Programming (SQP) framework. The novelty of the approach is that it is matrix-free (i.e., only mechanisms for computing products of vectors with Jacobian and Hessian matrices are required), thereby avoiding a need for the explicit formation of the arising iteration matrices. Iterative linear algebra techniques, for example, can then be used in place of factorization methods, allowing the introduction of inexactness into the step computation process to achieve further savings in computation. The algorithm automatically determines when a given inexact SQP step makes sufficient progress toward a solution of the nonlinear program, as measured by an exact penalty function, in order to ensure global convergence to a first order optimal point.
    [Show full text]