A Tutorial on Convex Optimization II: Duality and Interior Point Methods

Total Page:16

File Type:pdf, Size:1020Kb

A Tutorial on Convex Optimization II: Duality and Interior Point Methods A Tutorial on Convex Optimization II: Duality and Interior Point Methods Haitham Hindi Palo Alto Research Center (PARC), Palo Alto, California 94304 email: [email protected] Abstract— In recent years, convex optimization has become a and concepts. For detailed examples and applications, the computational tool of central importance in engineering, thanks reader is refered to [8], [2], [6], [5], [7], [10], [12], [17], to its ability to solve very large, practical engineering problems [9], [25], [16], [31], and the references therein. reliably and efficiently. The goal of this tutorial is to continue the overview of modern convex optimization from where our We now briefly outline the paper. There are two main ACC2004 Tutorial on Convex Optimization left off, to cover sections after this one. Section II is on duality, where we important topics that were omitted there due to lack of space summarize the key ideas the general theory, illustrating and time, and highlight the intimate connections between them. the four main practical applications of duality with simple The topics of duality and interior point algorithms will be our examples. Section III is on interior point algorithms, where focus, along with simple examples. The material in this tutorial is excerpted from the recent book on convex optimization, by the focus is on barrier methods, which can be implemented Boyd and Vandenberghe, who have made available a large easily using only a few key technical components, and yet amount of free course material and freely available software. are highly effective both in theory and in practice. All of the These can be downloaded and used immediately by the reader theory we cover can be readily extended to general conic both for self-study and to solve real problems. programs, such as second order cone programs (SOCP) and semidefinite programs (SDP); see [8] for details. I. INTRODUCTION Notation Our notation is standard [8]. For example, we will The objectives are to continue the overview of modern use dom to denote the domain of a function, int denotes the convex optimization from where our ACC2004 Tutorial on interior of a set, relint denotes the interior of a set relative Convex Optimization [18] left off. Specifically, we review to the smallest affine set containing it (its affine hull), and the role of duality and demonstrate both its practical and () to denote componentwise inequality when applied to theoretical value in convex optimization; describe interior vectors, and semidefinite ordering, when applied to matrices. n point methods for solving convex optimization problems; and S+ denotes the set of symmetric n × n positive semidefinite highlight the intimate connections between duality and the matrices. solution methods. We aim to give an overview of the essential ideas mainly II. DUALITY defining concepts and listing properties without proof. With In this section, we present the basic ideas of duality the exception of minimal narrative comments by the present theory, illustrating along the way its four main practical author, all of the material in this tutorial is excerpted from uses: bounding nonconvex problems; stopping criteria in chapters 5, 9, 10 and 11 of the book Convex Optimization algorithms; decomposition of large problems; and sensitivity by Boyd and Vandenberghe [8], where complete details analysis. with lucid explanations can be found. This will be our main reference in this tutorial. I am deeply indebted to the A. The Lagrange dual function authors, for generously allowing me to use their material in preparing this tutorial. The authors have also made available 1) The Lagrangian: We consider an optimization problem on the internet a large amount of free course material and in the standard form: software [14], [22]. minimize f0(x) The reader is assumed to have a working knowledge of subject to fi(x) ≤ 0; i = 1; : : : ; m (1) linear algebra and basic vector calculus, and some (minimal) hi(x) = 0; i = 1; : : : ; p; exposure to optimization. However, due to its different focus, this paper can be read quite independently of our Part I with variable x 2 Rn, and where the functions from Rn ! R paper [18]. The following references also cover the topics f0, f1; : : : ; fm, and h1; : : : ; hp are the objective, inequality of optimization [26], [24], [1], [3], [4], convex analysis [23], constraints and equality constraints, respectively. We assume m dom p dom [28], [30], [19], [15], and numerical computation [29], [13], its domain D = i=0 fi \ i=1 hi is nonempty, [11], [20]. and denote the optimal value of (1) by p?. For now, we do T T Also, in order keep the paper quite general, we have not assume the problem (1) is convex. tried to not to bias our presentation toward any particular The basic idea in Lagrangian duality is to take the con- audience. Hence, the examples used in the paper are very straints in (1) into account by augmenting the objective simple and intended merely to clarify the optimization ideas function with a weighted sum of the constraint functions. We n m p define the Lagrangian L : R × R × R ! R associated which has inequality constraint functions fi(x) = −xi, i = with the problem (1) as 1; : : : ; n. To form the Lagrangian we introduce multipliers λi for the n inequality constraints and multipliers νi for the equality m p constraints, and obtain L(x; λ, ν) = f0(x) + λifi(x) + νihi(x); T n T L(x; λ, ν) = c x − λixi + ν (Ax − b) i=1 i=1 i=1 X X = −bT ν + (c + AT ν − λ)T x: m p with dom L = D × R × R . We refer to λi as the La- P The dual function is grange multiplier associated with the ith inequality constraint T T T fi(x) ≤ 0; similarly we refer to νi as the Lagrange multiplier g(λ, ν) = inf L(x; λ, ν) = −b ν + inf(c + A ν − λ) x; x x associated with the ith equality constraint hi(x) = 0. The vectors λ and ν are called the dual variables or Lagrange which is easily determined analytically, since a linear function is bounded below only when it is identically zero. Thus, g(λ, ν) = multiplier vectors associated with the problem (1). −∞ except when c + AT ν − λ = 0, in which case it is −bT ν: 2) The Lagrange dual function: We define the Lagrange m p −bT ν AT ν − λ + c = 0 dual function (or just dual function) g : R × R ! R as g(λ, ν) = m −∞ otherwise. the minimum value of the Lagrangian over x: for λ 2 R , ν 2 Rp, Note that the dual function g is finite only on a proper affine m p m p subset of R × R . We will see that this is a common occurrence. The lower bound property (2) is nontrivial only g(λ, ν) = inf f0(x) + λifi(x) + νihi(x) : T x2D when λ and ν satisfy λ 0 and A ν − λ + c = 0. When i=1 i=1 ! T X X this occurs, −b ν is a lower bound on the optimal value of the When the Lagrangian is unbounded below in x, the dual LP (3). function takes on the value −∞. Since the dual function is the pointwise infimum of a family of affine functions B. The Lagrange dual problem of (λ, ν), it is concave, even when the problem (1) is not For each pair (λ, ν) with λ 0, the Lagrange dual convex. function gives us a lower bound on the optimal value p? of 3) Lower bounds on optimal value: It is easy to show [8] the optimization problem (1). Thus we have a lower bound that the dual function yields lower bounds on the optimal that depends on some parameters λ, ν. A natural question value p? of the problem (1): For any λ 0 and any ν we is: What is the best lower bound that can be obtained from have the Lagrange dual function? g(λ, ν) ≤ p?: (2) This leads to the optimization problem maximize g(λ, ν) This important property is easily verified. Suppose x~ is a (4) feasible point for the problem (1), i.e., fi(x~) ≤ 0 and subject to λ 0: hi(x~) = 0, and λ 0. Then we have This problem is called the Lagrange dual problem associated m p with the problem (1). In this context the original problem (1) λifi(x~) + νihi(x~) ≤ 0; is sometimes called the primal problem. The term dual i=1 i=1 feasible, to describe a pair (λ, ν) with λ 0 and g(λ, ν) > X X since each term in the first sum is nonpositive, and each term −∞, now makes sense. It means, as the name implies, that in the second sum is zero, and therefore (λ, ν) is feasible for the dual problem (4). We refer to (λ?; ν?) as dual optimal or optimal Lagrange multipliers if m p L(x;~ λ, ν) = f (x~) + λ f (x~) + ν h (x~) ≤ f (x~): they are optimal for the problem (4). 0 i i i i 0 The Lagrange dual problem (4) is a convex optimization i=1 i=1 X X problem, since the objective to be maximized is concave and Hence the constraint is convex. This is the case whether or not the primal problem (1) is convex. g(λ, ν) = inf L(x; λ, ν) ≤ L(x;~ λ, ν) ≤ f0(x~): x2D 1) Making dual constraints explicit: The example above Since g(λ, ν) ≤ f0(x~) holds for every feasible point x~, the shows that it can happen (and often does) that the domain inequality (2) follows.
Recommended publications
  • Duality Gap Estimation Via a Refined Shapley--Folkman Lemma | SIAM
    SIAM J. OPTIM. \bigcircc 2020 Society for Industrial and Applied Mathematics Vol. 30, No. 2, pp. 1094{1118 DUALITY GAP ESTIMATION VIA A REFINED SHAPLEY{FOLKMAN LEMMA \ast YINGJIE BIy AND AO TANG z Abstract. Based on concepts like the kth convex hull and finer characterization of noncon- vexity of a function, we propose a refinement of the Shapley{Folkman lemma and derive anew estimate for the duality gap of nonconvex optimization problems with separable objective functions. We apply our result to the network utility maximization problem in networking and the dynamic spectrum management problem in communication as examples to demonstrate that the new bound can be qualitatively tighter than the existing ones. The idea is also applicable to cases with general nonconvex constraints. Key words. nonconvex optimization, duality gap, convex relaxation, network resource alloca- tion AMS subject classifications. 90C26, 90C46 DOI. 10.1137/18M1174805 1. Introduction. The Shapley{Folkman lemma (Theorem 1.1) was stated and used to establish the existence of approximate equilibria in economy with nonconvex preferences [13]. It roughly says that the sum of a large number of sets is close to convex and thus can be used to generalize results on convex objects to nonconvex ones. n m P Theorem 1.1. Let S1;S2;:::;Sn be subsets of R . For each z 2 conv i=1 Si = Pn conv S , there exist points zi 2 conv S such that z = Pn zi and zi 2 S except i=1 i i i=1 i for at most m values of i. Remark 1.2.
    [Show full text]
  • Subdifferentiability and the Duality
    Subdifferentiability and the Duality Gap Neil E. Gretsky ([email protected]) ∗ Department of Mathematics, University of California, Riverside Joseph M. Ostroy ([email protected]) y Department of Economics, University of California, Los Angeles William R. Zame ([email protected]) z Department of Economics, University of California, Los Angeles Abstract. We point out a connection between sensitivity analysis and the funda- mental theorem of linear programming by characterizing when a linear programming problem has no duality gap. The main result is that the value function is subd- ifferentiable at the primal constraint if and only if there exists an optimal dual solution and there is no duality gap. To illustrate the subtlety of the condition, we extend Kretschmer's gap example to construct (as the value function of a linear programming problem) a convex function which is subdifferentiable at a point but is not continuous there. We also apply the theorem to the continuum version of the assignment model. Keywords: duality gap, value function, subdifferentiability, assignment model AMS codes: 90C48,46N10 1. Introduction The purpose of this note is to point out a connection between sensi- tivity analysis and the fundamental theorem of linear programming. The subject has received considerable attention and the connection we find is remarkably simple. In fact, our observation in the context of convex programming follows as an application of conjugate duality [11, Theorem 16]. Nevertheless, it is useful to give a separate proof since the conclusion is more readily established and its import for linear programming is more clearly seen. The main result (Theorem 1) is that in a linear programming prob- lem there exists an optimal dual solution and there is no duality gap if and only if the value function is subdifferentiable at the primal constraint.
    [Show full text]
  • Arxiv:2011.09194V1 [Math.OC]
    Noname manuscript No. (will be inserted by the editor) Lagrangian duality for nonconvex optimization problems with abstract convex functions Ewa M. Bednarczuk · Monika Syga Received: date / Accepted: date Abstract We investigate Lagrangian duality for nonconvex optimization prob- lems. To this aim we use the Φ-convexity theory and minimax theorem for Φ-convex functions. We provide conditions for zero duality gap and strong duality. Among the classes of functions, to which our duality results can be applied, are prox-bounded functions, DC functions, weakly convex functions and paraconvex functions. Keywords Abstract convexity · Minimax theorem · Lagrangian duality · Nonconvex optimization · Zero duality gap · Weak duality · Strong duality · Prox-regular functions · Paraconvex and weakly convex functions 1 Introduction Lagrangian and conjugate dualities have far reaching consequences for solution methods and theory in convex optimization in finite and infinite dimensional spaces. For recent state-of the-art of the topic of convex conjugate duality we refer the reader to the monograph by Radu Bot¸[5]. There exist numerous attempts to construct pairs of dual problems in non- convex optimization e.g., for DC functions [19], [34], for composite functions [8], DC and composite functions [30], [31] and for prox-bounded functions [15]. In the present paper we investigate Lagrange duality for general optimiza- tion problems within the framework of abstract convexity, namely, within the theory of Φ-convexity. The class Φ-convex functions encompasses convex l.s.c. Ewa M. Bednarczuk Systems Research Institute, Polish Academy of Sciences, Newelska 6, 01–447 Warsaw Warsaw University of Technology, Faculty of Mathematics and Information Science, ul.
    [Show full text]
  • Lagrangian Duality and Perturbational Duality I ∗
    Lagrangian duality and perturbational duality I ∗ Erik J. Balder Our approach to the Karush-Kuhn-Tucker theorem in [OSC] was entirely based on subdifferential calculus (essentially, it was an outgrowth of the two subdifferential calculus rules contained in the Fenchel-Moreau and Dubovitskii-Milyutin theorems, i.e., Theorems 2.9 and 2.17 of [OSC]). On the other hand, Proposition B.4(v) in [OSC] gives an intimate connection between the subdifferential of a function and the Fenchel conjugate of that function. In the present set of lecture notes this connection forms the central analytical tool by which one can study the connections between an optimization problem and its so-called dual optimization problem (such connections are commonly known as duality relations). We shall first study duality for the convex optimization problem that figured in our Karush-Kuhn-Tucker results. In this simple form such duality is known as Lagrangian duality. Next, in section 2 this is followed by a far-reaching extension of duality to abstract optimization problems, which leads to duality-stability relationships. Then, in section 3 we specialize duality to optimization problems with cone-type constraints, which includes Fenchel duality for semidefinite programming problems. 1 Lagrangian duality An interesting and useful interpretation of the KKT theorem can be obtained in terms of the so-called duality principle (or relationships) for convex optimization. Recall our standard convex minimization problem as we had it in [OSC]: (P ) inf ff(x): g1(x) ≤ 0; ··· ; gm(x) ≤ 0; Ax − b = 0g x2S n and recall that we allow the functions f; g1; : : : ; gm on R to have values in (−∞; +1].
    [Show full text]
  • Bounding the Duality Gap for Problems with Separable Objective
    Bounding the Duality Gap for Problems with Separable Objective Madeleine Udell and Stephen Boyd March 8, 2014 Abstract We consider the problem of minimizing a sum of non-convex func- tions over a compact domain, subject to linear inequality and equality constraints. We consider approximate solutions obtained by solving a convexified problem, in which each function in the objective is replaced by its convex envelope. We propose a randomized algorithm to solve the convexified problem which finds an -suboptimal solution to the original problem. With probability 1, is bounded by a term propor- tional to the number of constraints in the problem. The bound does not depend on the number of variables in the problem or the number of terms in the objective. In contrast to previous related work, our proof is constructive, self-contained, and gives a bound that is tight. 1 Problem and results The problem. We consider the optimization problem Pn minimize f(x) = i=1 fi(xi) subject to Ax ≤ b (P) Gx = h; N ni Pn with variable x = (x1; : : : ; xn) 2 R , where xi 2 R , with i=1 ni = N. m1×N There are m1 linear inequality constraints, so A 2 R , and m2 linear equality constraints, so G 2 Rm2×N . The optimal value of P is denoted p?. The objective function terms are lower semi-continuous on their domains: 1 ni fi : Si ! R, where Si ⊂ R is a compact set. We say that a point x is feasible (for P) if Ax ≤ b, Gx = h, and xi 2 Si, i = 1; : : : ; n.
    [Show full text]
  • Deep Neural Networks with Multi-Branch Architectures Are Less Non-Convex
    Deep Neural Networks with Multi-Branch Architectures Are Less Non-Convex Hongyang Zhang Junru Shao Ruslan Salakhutdinov Carnegie Mellon University Carnegie Mellon University Carnegie Mellon University [email protected] [email protected] [email protected] Abstract Several recently proposed architectures of neural networks such as ResNeXt, Inception, Xception, SqueezeNet and Wide ResNet are based on the designing idea of having multiple branches and have demonstrated improved performance in many applications. We show that one cause for such success is due to the fact that the multi-branch architecture is less non-convex in terms of duality gap. The duality gap measures the degree of intrinsic non-convexity of an optimization problem: smaller gap in relative value implies lower degree of intrinsic non-convexity. The challenge is to quantitatively measure the duality gap of highly non-convex problems such as deep neural networks. In this work, we provide strong guarantees of this quantity for two classes of network architectures. For the neural networks with arbitrary activation functions, multi-branch architecture and a variant of hinge loss, we show that the duality gap of both population and empirical risks shrinks to zero as the number of branches increases. This result sheds light on better understanding the power of over-parametrization where increasing the network width tends to make the loss surface less non-convex. For the neural networks with linear activation function and `2 loss, we show that the duality gap of empirical risk is zero. Our two results work for arbitrary depths and adversarial data, while the analytical techniques might be of independent interest to non-convex optimization more broadly.
    [Show full text]
  • Lecture 11: October 8 11.1 Primal and Dual Problems
    10-725/36-725: Convex Optimization Fall 2015 Lecture 11: October 8 Lecturer: Ryan Tibshirani Scribes: Tian Tong Note: LaTeX template courtesy of UC Berkeley EECS dept. Disclaimer: These notes have not been subjected to the usual scrutiny reserved for formal publications. They may be distributed outside this class only with the permission of the Instructor. 11.1 Primal and dual problems 11.1.1 Lagrangian Consider a general optimization problem (called as primal problem) min f(x) (11.1) x subject to hi(x) ≤ 0; i = 1; ··· ; m `j(x) = 0; j = 1; ··· ; r: We define its Lagrangian as m r X X L(x; u; v) = f(x) + uihi(x) + vj`j(x): i=1 j=1 Lagrange multipliers u 2 Rm; v 2 Rr. Lemma 11.1 At each feasible x, f(x) = supu≥0;v L(x; u; v), and the supremum is taken iff u ≥ 0 satisfying uihi(x) = 0; i = 1; ··· ; m. Pm Proof: At each feasible x, we have hi(x) ≤ 0 and `(x) = 0, thus L(x; u; v) = f(x) + i=1 uihi(x) + Pr j=1 vj`j(x) ≤ f(x). The last inequality becomes equality iff uihi(x) = 0; i = 1; ··· ; m. Proposition 11.2 The optimal value of the primal problem, named as f ?, satisfies: f ? = inf sup L(x; u; v): x u≥0;v ? Proof: First considering feasible x (marked as x 2 C), we have f = infx2C f(x) = infx2C supu≥0;v L(x; u; v). Second considering non-feasible x, since supu≥0;v L(x; u; v) = 1 for any x2 = C, infx=2C supu≥0;v L(x; u; v) = ? 1.
    [Show full text]
  • Stability of the Duality Gap in Linear Optimization
    Set-Valued and Variational Analysis manuscript No. (will be inserted by the editor) Stability of the duality gap in linear optimization M.A. Goberna · A.B. Ridolfi · V.N. Vera de Serio Received: date / Accepted: date Abstract In this paper we consider the duality gap function g that measures the difference between the optimal values of the primal problem and of the dual problem in linear pro- gramming and in linear semi-infinite programming. We analyze its behavior when the data defining these problems may be perturbed, considering seven different scenarios. In partic- ular we find some stability results by proving that, under mild conditions, either the duality gap of the perturbed problems is zero or +¥ around the given data, or g has an infinite jump at it. We also give conditions guaranteeing that those data providing a finite duality gap are limits of sequences of data providing zero duality gap for sufficiently small perturbations, which is a generic result. Keywords Linear programming · Linear semi-infinite programming · Duality gap function · Stability · Primal-dual partition Mathematics Subject Classifications (2010) 90C05, 90C34, 90C31, 90C46 1 Introduction Linear optimization consists in the minimization of a linear objective function subject to linear constraints. Here the duality gap plays an important role both for theoretical and for This research was partially supported by MINECO of Spain and FEDER of EU, Grant MTM2014-59179- C2-01 and SECTyP-UNCuyo Res. 4540/13-R. M.A. Goberna Department of Mathematics, University of Alicante, 03080 Alicante, Spain. E-mail: [email protected] A.B. Ridolfi Universidad Nacional de Cuyo, Facultad de Ciencias Aplicadas a la Industria, Facultad de Ciencias Economicas,´ Mendoza, Argentina.
    [Show full text]
  • Abstract Convexity for Nonconvex Optimization Duality
    Abstract Convexity for Nonconvex Optimization Duality Angelia Nedi¶c,¤ Asuman Ozdaglar,y and Alex Rubinovz February 26, 2007 Abstract In this paper, we use abstract convexity results to study augmented dual prob- lems for (nonconvex) constrained optimization problems. We consider a nonin- creasing function f (to be interpreted as a primal or perturbation function) that is lower semicontinuous at 0 and establish its abstract convexity at 0 with respect to a set of elementary functions de¯ned by nonconvex augmenting functions. We consider three di®erent classes of augmenting functions: nonnegative augment- ing functions, bounded-below augmenting functions, and unbounded augmenting functions. We use the abstract convexity results to study augmented optimization duality without imposing boundedness assumptions. Key words: Abstract convexity, augmenting functions, augmented Lagrangian functions, asymptotic directions, duality gap. 1 Introduction The analysis of convex optimization duality relies on using linear separation results from convex analysis on the epigraph of the perturbation (primal) function of the optimization problem. This translates into dual problems constructed using traditional Lagrangian functions, which is a linear combination of the objective and constraint functions (see, for example, Rockafellar [13], Hiriart-Urruty and Lemarechal [8], Bonnans and Shapiro [5], Borwein and Lewis [6], Bertsekas, Nedi¶c,and Ozdaglar [3, 4], Auslender and Teboulle [1]). However, linear separation results are not applicable for nonconvex
    [Show full text]
  • Arxiv:1902.10921V1 [Math.OC] 28 Feb 2019 Programming Nvriy Ejn,109,P .Ciaemi:Yxia@Buaa and E-Mail: Mathematics China of R
    Noname manuscript No. (will be inserted by the editor) A survey of hidden convex optimization Yong Xia Received: date / Accepted: date Abstract Motivated by the fact that not all nonconvex optimization problems are difficult to solve, we survey in this paper three widely-used ways to reveal the hidden convex structure for different classes of nonconvex optimization problems. Finally, ten open problems are raised. Keywords convex programming quadratic programming quadratic matrix programming fractional programming· Lagrangian dual · semidefinite programming · · · Mathematics Subject Classification (2010) 90C20, 90C25, 90C26, 90C32 1 Introduction Nowadays, convex programming becomes very popular due to not only its various real applications but also the charming property that any local solution also remains global optimality. However, it does not mean that convex programming problems are easy to solve. First, it may be difficult to identify convexity. Actually, deciding whether a quartic polynomials is globally convex is NP-hard [1]. Second, evaluating a convex function is also not always easy. For example, the induced matrix norm Ax p A p = sup k k k k x x p =06 k k This research was supported by National Natural Science Foundation of China under grants arXiv:1902.10921v1 [math.OC] 28 Feb 2019 11822103, 11571029 and Beijing Natural Science Foundation Z180005. Y. Xia LMIB of the Ministry of Education; School of Mathematics and System Sciences, Beihang University, Beijing, 100191, P. R. China E-mail: [email protected] 2 Yong Xia is a convex function. But evaluating A p is NP-hard if p =1, 2, [35]. Third, convex programming problems mayk bek difficult to solve.6 It has been∞ shown in [20] that the general mixed-binary quadratic optimization problems can be equivalently reformulated as convex programming over the copositive cone Co := A Rn×n : A = AT , xT Ax 0, x 0, x Rn .
    [Show full text]
  • CONTINUOUS CONVEX SETS and ZERO DUALITY GAP for CONVEX PROGRAMS Emil Ernst, Michel Volle
    CONTINUOUS CONVEX SETS AND ZERO DUALITY GAP FOR CONVEX PROGRAMS Emil Ernst, Michel Volle To cite this version: Emil Ernst, Michel Volle. CONTINUOUS CONVEX SETS AND ZERO DUALITY GAP FOR CON- VEX PROGRAMS. 2011. hal-00652632 HAL Id: hal-00652632 https://hal.archives-ouvertes.fr/hal-00652632 Preprint submitted on 16 Dec 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. CONTINUOUS CONVEX SETS AND ZERO DUALITY GAP FOR CONVEX PROGRAMS EMIL ERNST AND MICHEL VOLLE ABSTRACT. This article uses classical notions of convex analysis over euclidean spaces, like Gale & Klee’s boundary rays and asymptotes of a convex set, or the inner aperture directions defined by Larman and Brøndsted for the same class of sets, to provide a new zero duality gap criterion for ordinary convex programs. On this ground, we are able to characterize objective functions and respectively feasible sets for which the duality gap is always zero, re- gardless of the value of the constraints and respectively of the objective function. 1. INTRODUCTION The aim of this paper is to refine the well-known convex optimization Theorem of primal attainement (see for instance [2, Proposition 5.3.3], and also the Appendix of this article) which proves that the duality gap of a convex program defined over an euclidean space amounts to zero provided that it does not possess any direction of recession (that is a direction of recession which is common to both the objective function and the feasible set).
    [Show full text]
  • Remarks on Fenchel–Moreau Conjugate in the Setting of Consumer Theoryଝ
    A Service of Leibniz-Informationszentrum econstor Wirtschaft Leibniz Information Centre Make Your Publications Visible. zbw for Economics Cunha, George H.M.; Oliveira, Michel A.C.; Oliveira, Michel A.C.; Sosa, Wilfredo Article Remarks on Fenchel-Moreau conjugate in the setting of consumer theory EconomiA Provided in Cooperation with: The Brazilian Association of Postgraduate Programs in Economics (ANPEC), Rio de Janeiro Suggested Citation: Cunha, George H.M.; Oliveira, Michel A.C.; Oliveira, Michel A.C.; Sosa, Wilfredo (2016) : Remarks on Fenchel-Moreau conjugate in the setting of consumer theory, EconomiA, ISSN 1517-7580, Elsevier, Amsterdam, Vol. 17, Iss. 2, pp. 176-184, http://dx.doi.org/10.1016/j.econ.2016.04.001 This Version is available at: http://hdl.handle.net/10419/179619 Standard-Nutzungsbedingungen: Terms of use: Die Dokumente auf EconStor dürfen zu eigenen wissenschaftlichen Documents in EconStor may be saved and copied for your Zwecken und zum Privatgebrauch gespeichert und kopiert werden. personal and scholarly purposes. Sie dürfen die Dokumente nicht für öffentliche oder kommerzielle You are not to copy documents for public or commercial Zwecke vervielfältigen, öffentlich ausstellen, öffentlich zugänglich purposes, to exhibit the documents publicly, to make them machen, vertreiben oder anderweitig nutzen. publicly available on the internet, or to distribute or otherwise use the documents in public. Sofern die Verfasser die Dokumente unter Open-Content-Lizenzen (insbesondere CC-Lizenzen) zur Verfügung gestellt haben sollten, If the documents have been made available under an Open gelten abweichend von diesen Nutzungsbedingungen die in der dort Content Licence (especially Creative Commons Licences), you genannten Lizenz gewährten Nutzungsrechte. may exercise further usage rights as specified in the indicated licence.
    [Show full text]