1 Convex Cones

Total Page:16

File Type:pdf, Size:1020Kb

1 Convex Cones Duke University, Department of Electrical and Computer Engineering Optimization for Scientists and Engineers c Alex Bronstein, 2014 Conic Programming Recall the linear programming (LP) problem that we have seen in the last lecture: min cTx s:t: Ax − b ≥ 0: x2Rn n m×n m with c 2 R , A 2 R and b 2 R . The constraints of this problem (interpreted as an element-wise inequality) can be written equivalently as m m Ax − b 2 R+ = fy 2 R : yi ≥ 0; 8ig: m The space R+ is usually called the positive (or, more accurately, non-negative) orthant; the constraints of LP can be interpreted as the intersection of the affine space Ax − b with the positive orthant. 1 Convex cones Geometrically, the orthant is a particular case of a construction called a convex cone: Definition. A set C is a convex cone iff αC + βC = C for any α; β > 0. The cone is said pointed if 0 2 C and blunt otherwise. The cone is said salient if for every 0 6= x 2 C, −x 2= C, and flat otherwise. m The way we defined R+ makes it a pointed salient convex cone. Other examples of cones we will see next fall into this category: 1. Lorentz (aka \ice cream" or \second-order") cone defined as m m 2 2 2 2 L = fx 2 R : xm ≥ x1 + ··· + xm−1g = fx : xm ≥ k(x1; : : : ; xm−1)k2g: 2. Positive semidefinite cone m m×m S+ = fA 2 R : A 0g: m m m Exercise 1. Show that R+ , L , and S+ are pointed salient convex cones. The notion of a cone gives rise to a generalized form of conic inequalities: for a cone K, we will denote a 2 K equivalently as a ≥K 0. Similarly, we will say a ≥K b implying a − b ≥K 0 or, equivalently, a − b 2 K. In the same way, Ax − b ≥K 0 defines the intersection of an affine space with the cone K. 1 2 Conic programs The notion of a conic inequality allows to generalize a linear program into a conic program (CP) T min c x s:t: Ax − b ≥K 0 x2Rn by simply replacing the standard inequality (i.e., ≥ m ) with a conic inequality w.r.t. some R+ convex cone K. Apart from linear programming, which is an obvious particular case of CP, the following two problems are of major importance: 1. Second-order conic program (SOCP) corresponding to K = Lm: T Ax − b min c x s:t: T ≥K 0 x2Rn d x − e which can be rewritten explicitly as T T min c x s:t: kAx − bk2 ≤ d x − e: x2Rn m 2. Semidefinite program (SDP) corresponding to K = S+ . In order to avoid high-order n m×m tensor notation, we will define a general linear operator A : R 7! R as n X Ax = xiAi; i=1 m where A1;:::; An 2 S+ . In these terms, an SDP can be written as min cTx s:t: Ax − B 0: x2Rn Surprisingly, SDP generalizes both LP and SOCP! Any linear program can be written in the form T T min c x s:t: ai x − bi ≥ 0; i = 1; : : : ; m; x2Rn which can be written as an equivalent SDP 0 T 1 a1 x − b1 T . min c x s:t: B .. C 0: x2 n @ A R T amx − bm Note that a diagonal matrix is positive semi-definite iff all its diagonal elements are non- negative. In order to reduce SOCP to SDP, we will need the following very useful result: 2 Theorem 1 (Schur complement). Let A be a symmetric block matrix PQT A = QR with R 0. Then, A 0 iff P − QTR−1Q 0. The theorem holds for a semi-definite A as well. To prove this result, observe that A 0 iff for every u, PQT u inf(uT; vT) = inf uTPu + 2uTQTv + vTRv: v QR v v The latter is an infimum of a quadratic function in v, for which we can write the following necessary optimality condition (which is also sufficient, since R 0 and the function is convex): 2Qu + 2Rv = 0; from where v = −R−1Qu: Substituting the solution into the quadratic function yields u inf(uTvT)A = uTPu − 2uTQTR−1Qu + uTQTR−1RR−1Qu v v = uT(P − QTR−1Q)u The latter quadratic form is non-negative iff P − QTR−1Q 0. Armed with Schur's complement theorem, we can now return to the SOCP problem, which we will now write as T min c x s:t: ku(x)k2 ≤ v(x); x2Rn where u(x) = Ax − b and v(x) = dTx − e. Note that v in the constraint upper-bounds a norm, so it cannot be negative. We rewrite the constraint as uTu ≤ v2 or, dividing by v as −1 0 v 1 1 T T . v − u u = v − u B .. C u ≥ 0: v @ A v Invoking the Schur's complement, we can equivalently write the constraint as 0 v(x) − uT(x) − 1 B j v(x) C B C B .. C 0; @ u(x) . A j v(x) turning SOCP into an SDP. 3 3 Barrier (interior point) methods One of the most successful ways of solving conic programs are barrier methods, also know as interior point methods. Recall that we defined barriers as a particular family of penalty functions that disallow infeasible solutions. For our purpose, a barrier representing a cone K is a function ' : K ! R such that lim '(x) = 1: K3x!@K A barrier method consists of solving a sequence of unconstrained minimization problems with the barrier aggregate T 1 min Fp(x) = min c x + '(Ax − b); x2Rn x2Rn p with increasing p. In the limit p ! 1, unconstrained minimization of F1 is equivalent to the original conic program. As we have already mentioned, the barrier method has to be initialized with a feasible point, and it will always produce a strictly feasible solution (this is the reason for the name interior point). The following barrier functions are frequently used for standard convex cones: Cone Barrier function m m X R+ '(x) = − log xi i=1 m−1 ! m 2 X 2 L '(x) = − log xm − xi i=1 m S+ '(X) = − log det X Exercise 2. Derive the gradients of the above functions and show that they qualify as bar- riers. Hint: for the semidefinite cone barrier, show that − log det X can be represented as −tr log X, where log X is understood as a function of a matrix. 4 Dual cones Definition. The dual of a cone K is K∗ = fy : hx; yi ≥ 0 8x 2 Kg Exercise 3. Prove that K∗ is a cone. Geometrically, the dual cone consists of vectors forming acute angles with all the vectors of the cone K. Exercise 4. Prove that (K∗)∗ = K. Definition. A cone K is said to be self-dual iff K∗ = K. m m m Exercise 5. Show that R+ , L and S+ are self-dual. 4 5 Dual conic programs Before we show the dual form of a general convex conic program, we need another important notion from linear algebra. Definition. An adjoint of a linear operator A : U ! V is the linear operator A∗ : V ! U such that for every u 2 U and v 2 V , ∗ hu; A viU = hAu; viV : In general, there is no relation between the adjoint operator and the inverse operator! Exercise 6. Show that the adjoint of a linear operator expressed by a real matrix A is the matrix AT. Let us now consider the (primal) conic program T min c x s:t: Ax − b ≥K 0: x2Rn For every feasible x, Ax − b 2 K. Therefore, by definition of the dual cone, for every y 2 K∗, hAx − b; yi ≥ 0, from where hAx; yi = hx; A∗yi ≥ hb; yi In particular, for A∗y = c, we have hc; xi ≥ hb; yi: In other words, hb; yi is the lower bound on the primal objective. Maximizing the latter bound yields the dual problem: max bTy s:t: A∗y = c: y2K∗ Most practical conic program satisfy the conditions of the following strong duality theo- rem: Theorem 2 (Strong duality). If either the primal or the dual problems are strictly feasible and bounded, then the other one is solvable and hc; x∗i = hb; y∗i. Let x∗ and y∗ the primal and the dual solutions, respectively. Substituting A∗y = c into the strong duality result yields 0 = hc; x∗i − hb; y∗i = hA∗y∗; x∗i − hb; y∗i = hy∗; Ax∗i − hy∗; bi = hy∗; Ax∗ − bi: Note that we have already seen this condition in the general nonlinear programming case, λ∗Tg(x∗) = 0, under the name of complementary slackness. As before, the dual variable y plays the role of the Lagrange multipliers. 5 As an example, let us derive the dual problem of SDP, in which m X Ax = xiAi: i=1 m Since S+ is self-dual, the dual problem can be written as maxhY; Bi s:t: A∗Y = c: Y0 Here, the inner product in the objective is a matrix inner product hY; Bi = tr(YB) (no ∗ m×m transpose due to symmetry). The adjoint operator A assigns to each matrix Y 2 R a n vector in R . In order to derive the adjoint, let fix some x and Y and use the definition m ∗ X hx; A Yi = hAx; Yi = h xiAi; Yi i=1 0 1 m hA1; Yi X B .
Recommended publications
  • On the Cone of a Finite Dimensional Compact Convex Set at a Point
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Elsevier - Publisher Connector On the Cone of a Finite Dimensional Compact Convex Set at a Point C. H. Sung Department of Mathematics University of Califmia at San Diego La Joll41, California 92093 and Department of Mathematics San Diego State University San Diego, California 92182 and B. S. Tam* Department of Mathematics Tamkang University Taipei, Taiwan 25137, Republic of China Submitted by Robert C. Thompson ABSTRACT Four equivalent conditions for a convex cone in a Euclidean space to be an F,-set are given. Our result answers in the negative a recent open problem posed by Tam [5], characterizes the barrier cone of a convex set, and also provides an alternative proof for the known characterizations of the inner aperture of a convex set as given by BrBnsted [2] and Larman [3]. 1. INTRODUCTION Let V be a Euclidean space and C be a nonempty convex set in V. For each y E C, the cone of C at y, denoted by cone(y, C), is the cone *The work of this author was supported in part by the National Science Council of the Republic of China. LINEAR ALGEBRA AND ITS APPLICATIONS 90:47-55 (1987) 47 0 Elsevier Science Publishing Co., Inc., 1987 52 Vanderbilt Ave., New York, NY 10017 00243795/87/$3.50 48 C. H. SUNG AND B. S. TAM { a(r - Y) : o > 0 and x E C} (informally called a point’s cone). On 23 August 1983, at the International Congress of Mathematicians in Warsaw, in a short communication session, the second author presented the paper [5] and posed the following open question: Is it true that, given any cone K in V, there always exists a compact convex set C whose point’s cone at some given point y is equal to K? In view of the relation cone(y, C) = cone(0, C - { y }), the given point y may be taken to be the origin of the space.
    [Show full text]
  • Contents 1. Introduction 1 2. Cones in Vector Spaces 2 2.1. Ordered Vector Spaces 2 2.2
    ORDERED VECTOR SPACES AND ELEMENTS OF CHOQUET THEORY (A COMPENDIUM) S. COBZAS¸ Contents 1. Introduction 1 2. Cones in vector spaces 2 2.1. Ordered vector spaces 2 2.2. Ordered topological vector spaces (TVS) 7 2.3. Normal cones in TVS and in LCS 7 2.4. Normal cones in normed spaces 9 2.5. Dual pairs 9 2.6. Bases for cones 10 3. Linear operators on ordered vector spaces 11 3.1. Classes of linear operators 11 3.2. Extensions of positive operators 13 3.3. The case of linear functionals 14 3.4. Order units and the continuity of linear functionals 15 3.5. Locally order bounded TVS 15 4. Extremal structure of convex sets and elements of Choquet theory 16 4.1. Faces and extremal vectors 16 4.2. Extreme points, extreme rays and Krein-Milman's Theorem 16 4.3. Regular Borel measures and Riesz' Representation Theorem 17 4.4. Radon measures 19 4.5. Elements of Choquet theory 19 4.6. Maximal measures 21 4.7. Simplexes and uniqueness of representing measures 23 References 24 1. Introduction The aim of these notes is to present a compilation of some basic results on ordered vector spaces and positive operators and functionals acting on them. A short presentation of Choquet theory is also included. They grew up from a talk I delivered at the Seminar on Analysis and Optimization. The presentation follows mainly the books [3], [9], [19], [22], [25], and [11], [23] for the Choquet theory. Note that the first two chapters of [9] contains a thorough introduction (with full proofs) to some basics results on ordered vector spaces.
    [Show full text]
  • Some Applications of the Hahn-Banach Separation Theorem 1
    Some Applications of the Hahn-Banach Separation Theorem 1 Frank Deutsch , Hein Hundal, Ludmil Zikatanov January 1, 2018 arXiv:1712.10250v1 [math.FA] 29 Dec 2017 1We dedicate this paper to our friend and colleague Professor Yair Censor on the occasion of his 75th birthday. Abstract We show that a single special separation theorem (namely, a consequence of the geometric form of the Hahn-Banach theorem) can be used to prove Farkas type theorems, existence theorems for numerical quadrature with pos- itive coefficients, and detailed characterizations of best approximations from certain important cones in Hilbert space. 2010 Mathematics Subject Classification: 41A65, 52A27. Key Words and Phrases: Farkas-type theorems, numerical quadrature, characterization of best approximations from convex cones in Hilbert space. 1 Introduction We show that a single separation theorem|the geometric form of the Hahn- Banach theorem|has a variety of different applications. In section 2 we state this general separation theorem (Theorem 2.1), but note that only a special consequence of it is needed for our applications (Theorem 2.2). The main idea in Section 2 is the notion of a functional being positive relative to a set of functionals (Definition 2.3). Then a useful characterization of this notion is given in Theorem 2.4. Some applications of this idea are given in Section 3. They include a proof of the existence of numerical quadrature with positive coefficients, new proofs of Farkas type theorems, an application to determining best approximations from certain convex cones in Hilbert space, and a specific application of the latter to determine best approximations that are also shape-preserving.
    [Show full text]
  • Complemented Brunn–Minkowski Inequalities and Isoperimetry for Homogeneous and Non-Homogeneous Measures
    Complemented Brunn{Minkowski Inequalities and Isoperimetry for Homogeneous and Non-Homogeneous Measures Emanuel Milman1 and Liran Rotem2 Abstract Elementary proofs of sharp isoperimetric inequalities on a normed space (Rn; k·k) equipped with a measure µ = w(x)dx so that wp is homogeneous are provided, along with a characterization of the corresponding equality cases. When p 2 (0; 1] and in addition wp is assumed concave, the result is an immediate corollary of the Borell{Brascamp{Lieb extension of the classical Brunn{Minkowski inequality, providing a new elementary proof of a recent result of Cabr´e{RosOton{Serra. When p 2 (−1=n; 0), the relevant property turns out to be a novel \q{complemented Brunn{Minkowski" inequality: n n n 8λ 2 (0; 1) 8 Borel sets A; B ⊂ R such that µ(R n A); µ(R n B) < 1 ; n n q n q 1=q µ∗(R n (λA + (1 − λ)B)) ≤ (λµ(R n A) + (1 − λ)µ(R n B) ) ; p 1 1 which we show is always satisfied by µ when w is homogeneous with q = p + n; in par- ticular, this is satisfied by the Lebesgue measure with q = 1=n. This gives rise to a new class of measures, which are \complemented" analogues of the class of convex measures introduced by Borell, but which have vastly different properties. The resulting isoperi- metric inequality and characterization of isoperimetric minimizers extends beyond the re- cent results of Ca~nete{Rosalesand Howe. The isoperimetric and Brunn-Minkowski type inequalities also extend to the non-homogeneous setting, under a certain log-convexity assumption on the density.
    [Show full text]
  • Conic Linear Programming
    Conic Linear Programming Yinyu Ye December 2004, revised January 2015 i ii Preface This monograph is developed for MS&E 314, \Conic Linear Programming", which I am teaching at Stanford. Information, lecture slides, supporting mate- rials, and computer programs related to this book may be found at the following address on the World-Wide Web: http://www.stanford.edu/class/msande314 Please report any question, comment and error to the address: [email protected] A little story in the development of semidefinite programming (SDP), a major subclass of conic linear programming. One day in 1990, I visited the Computer Science Department of the University of Minnesota and met a young graduate student, Farid Alizadeh. He, working then on combinatorial optimiza- tion, introduced me “semidefinite optimization" or linear programming over the positive definite matrix cone. We had a very extensive discussion that afternoon and concluded that interior-point linear programming algorithms could be ap- plicable to solving SDPs. I suggested Farid to look at the linear programming (LP) interior-point algorithms and to develop an SDP (primal) potential reduc- tion algorithm. He worked hard for several months, and one afternoon showed up in my office in Iowa City, about 300 miles from Minneapolis. He had every- thing worked out, including potential function, algorithm, complexity bound, and even a \dictionary" list between LP and SDP. But he was stuck on one problem that was on how to keep the symmetry of the scaled directional ma- trix. We went to a bar nearby on Clinton Street in Iowa City (I paid for him since I was a third-year professor then and eager to demonstrate that I could take care of my students).
    [Show full text]
  • From Hahn–Banach Type Theorems to the Markov Moment Problem, Sandwich Theorems and Further Applications
    mathematics Review From Hahn–Banach Type Theorems to the Markov Moment Problem, Sandwich Theorems and Further Applications Octav Olteanu Department of Mathematics-Informatics, University Politehnica of Bucharest, 060042 Bucharest, Romania; [email protected] or [email protected] Received: 23 July 2020; Accepted: 5 August 2020; Published: 10 August 2020 Abstract: The aim of this review paper is to recall known solutions for two Markov moment problems, which can be formulated as Hahn–Banach extension theorems, in order to emphasize their relationship with the following problems: (1) pointing out a previously published sandwich theorem of the type f h g, where f, g are convex functionals and h is an affine functional, over a finite-simplicial ≤ ≤ − set X, and proving a topological version for this result; (2) characterizing isotonicity of convex operators over arbitrary convex cones; giving a sharp direct proof for one of the generalizations of Hahn–Banach theorem applied to the isotonicity; (3) extending inequalities assumed to be valid on a small subset, to the entire positive cone of the domain space, via Krein–Milman or Carathéodory’s theorem. Thus, we point out some earlier, as well as new applications of the Hahn–Banach type theorems, emphasizing the topological versions of these applications. Keywords: Hahn–Banach type theorems; Markov moment problem; sandwich theorem; finite-simplicial set; isotone convex operator; necessary and sufficient conditions 1. Introduction We recall the classical formulation of the moment problem, under the terms of T. Stieltjes, given in 1894–1895 (see the basic book of N.I. Akhiezer [1] for details): find the repartition of the positive mass on the nonnegative semi-axis, if the moments of arbitrary orders k (k = 0, 1, 2, ::: ) are given.
    [Show full text]
  • The Weierstrass-Stone Theorem for Convex-Cone-Valued Functions
    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 ELSEVIER Journal of Computational and Applied Mathematics 53 (1994) 171-183 The Weierstrass-Stone theorem for convex-cone-valued functions Jo50 B. Prolla Departamento de Matema’tica, IMECC-UNICAMP, Caixa Postal 6065, 13081 Campinas, SP, Brazil Received 15 April 1992 Abstract Theorems of the Weierstrass-Stone-type are presented for the convex cone of all continuous functions defined on a compact Hausdorff space S with values in a convex cone LZ equipped with a suitable metric d. These results are applied to establish a Bohman-Korovkin-type theorem for monotone approximation. Keywords: Convex cone; Hausdorff metric 1. Metric convex cones Definition 1.1. An (abstract) co~luex co~le is a nonempty set E? such that to every pair of elements K and L of G? there corresponds an element K + L, called the sum of K and L, in such a way that addition is commutative and associative, and there exists in ‘Z a unique element 0, called the vertex of %T’,such that K + 0 = K, for every K E $7’.Moreover, to every pair A and K, where A 2 0 is a nonnegative real number and K E $9, there corresponds an element AK, called the product of A and K, in such a way that multiplication is associative: A(p K) = (Ap)K; 1 * K = K and 0 * K = 0 for every K E 29’;and the distributive laws are verified: A(K + L) = AK +AL,(h+p)K=AK+pK,foreveryK, L~E:andA>O,p>0.
    [Show full text]
  • Fixed Points in Convex Cones
    TRANSACTIONS OF THE AMERICAN MATHEMATICAL SOCIETY, SERIES B Volume 4, Pages 68–93 (July 19, 2017) http://dx.doi.org/10.1090/btran/15 FIXED POINTS IN CONVEX CONES NICOLAS MONOD Abstract. We propose a fixed-point property for group actions on cones in topological vector spaces. In the special case of equicontinuous representations, we prove that this property always holds; this statement extends the classical Ryll-Nardzewski theorem for Banach spaces. When restricting to cones that are locally compact in the weak topology, we prove that the property holds for all distal actions, thus extending the general Ryll-Nardzewski theorem for all locally convex spaces. Returning to arbitrary actions, the proposed fixed-point property becomes a group property, considerably stronger than amenability. Equivalent formu- lations are established and a number of closure properties are proved for the class of groups with the fixed-point property for cones. Contents 1. Introduction and results 68 2. Proof of the conical fixed-point theorems 74 3. Integrals and cones 77 4. Translate properties 78 5. Smaller cones 80 6. First stability properties 81 7. Central extensions 82 8. Subexponential groups 84 9. Reiter and ratio properties 85 10. Further comments and questions 86 Acknowledgments 91 References 91 1. Introduction and results As an art, mathematics has certain fundamental techniques. In particular, the area of fixed-point theory has its specific artistry. Sister JoAnn Louise Mark [Mar75, p. iii] Traiter la nature par le cylindre, la sph`ere, le cˆone... Paul C´ezanne, letter to Emile´ Bernard, 15 April 1904 [Ber07, p. 617] Received by the editors January 23, 2017 and, in revised form, February 10, 2017.
    [Show full text]
  • Lecture 2: Convex Sets
    Lecture 2: Convex sets August 28, 2008 Lecture 2 Outline • Review basic topology in Rn • Open Set and Interior • Closed Set and Closure • Dual Cone • Convex set • Cones • Affine sets • Half-Spaces, Hyperplanes, Polyhedra • Ellipsoids and Norm Cones • Convex, Conical, and Affine Hulls • Simplex • Verifying Convexity Convex Optimization 1 Lecture 2 Topology Review n Let {xk} be a sequence of vectors in R n n Def. The sequence {xk} ⊆ R converges to a vector xˆ ∈ R when kxk − xˆk tends to 0 as k → ∞ • Notation: When {xk} converges to a vector xˆ, we write xk → xˆ n • The sequence {xk} converges xˆ ∈ R if and only if for each component i: the i-th components of xk converge to the i-th component of xˆ i i |xk − xˆ | tends to 0 as k → ∞ Convex Optimization 2 Lecture 2 Open Set and Interior Let X ⊆ Rn be a nonempty set Def. The set X is open if for every x ∈ X there is an open ball B(x, r) that entirely lies in the set X, i.e., for each x ∈ X there is r > 0 s.th. for all z with kz − xk < r, we have z ∈ X Def. A vector x0 is an interior point of the set X, if there is a ball B(x0, r) contained entirely in the set X Def. The interior of the set X is the set of all interior points of X, denoted by R (X) • How is R (X) related to X? 2 • Example X = {x ∈ R | x1 ≥ 0, x2 > 0} R 2 (X) = {x ∈ R | x1 > 0, x2 > 0} R n 0 (S) of a probability simplex S = {x ∈ R | x 0, e x = 1} Th.
    [Show full text]
  • Lecture 3 Convex Functions
    Lecture 3 Convex functions (Basic properties; Calculus; Closed functions; Continuity of convex functions; Subgradients; Optimality conditions) 3.1 First acquaintance Definition 3.1.1 [Convex function] A function f : M ! R defined on a nonempty subset M of Rn and taking real values is called convex, if • the domain M of the function is convex; • for any x; y 2 M and every λ 2 [0; 1] one has f(λx + (1 − λ)y) ≤ λf(x) + (1 − λ)f(y): (3.1.1) If the above inequality is strict whenever x 6= y and 0 < λ < 1, f is called strictly convex. A function f such that −f is convex is called concave; the domain M of a concave function should be convex, and the function itself should satisfy the inequality opposite to (3.1.1): f(λx + (1 − λ)y) ≥ λf(x) + (1 − λ)f(y); x; y 2 M; λ 2 [0; 1]: The simplest example of a convex function is an affine function f(x) = aT x + b { the sum of a linear form and a constant. This function clearly is convex on the entire space, and the \convexity inequality" for it is equality; the affine function is also concave. It is easily seen that the function which is both convex and concave on the entire space is an affine function. Here are several elementary examples of \nonlinear" convex functions of one variable: 53 54 LECTURE 3. CONVEX FUNCTIONS • functions convex on the whole axis: x2p, p being positive integer; expfxg; • functions convex on the nonnegative ray: xp, 1 ≤ p; −xp, 0 ≤ p ≤ 1; x ln x; • functions convex on the positive ray: 1=xp, p > 0; − ln x.
    [Show full text]
  • Lecture 14 Polyhedral Convex Cones
    Lecture 14 Polyhedral Convex Cones Motivation, context Positive linear span Lecture 14 Types of cones Edge and face Polyhedral Convex Cones representation Supplementary cones; polar Representing Matthew T. Mason frictionless contact Cones in wrench space Force closure Cones in velocity Mechanics of Manipulation twist space Conclusion Lecture 14 Today’s outline Polyhedral Convex Cones Motivation, context Motivation, context Positive linear Positive linear span span Types of cones Types of cones Edge and face representation Edge and face representation Supplementary cones; polar Representing Supplementary cones; polar frictionless contact Cones in wrench Representing frictionless contact space Force closure Cones in velocity Cones in wrench space twist space Force closure Conclusion Cones in velocity twist space Conclusion Lecture 14 What use is a cone? I: velocity twists. Polyhedral Convex Cones Motivation, context Positive linear I Reuleaux’s analysis of unilateral constraint yields a span set of nominally feasible motions. Types of cones Edge and face I What does the corresponding set of IC’s look like, in representation the plane? Supplementary A triangle of signed rotation centers. cones; polar I What does the corresponding set of velocity twists Representing look like, in three space? frictionless contact Cones in wrench A batch of vertical, zero pitch screws hitting the space horizontal plane in a triangle. Force closure Cones in velocity I What does the corresponding set of velocity twists twist space look like, in velocity twist space (!z ; v0x ; v0y )? Conclusion A polyhedral convex cone. Lecture 14 What use is a cone? I: velocity twists. Polyhedral Convex Cones Motivation, context Positive linear I Reuleaux’s analysis of unilateral constraint yields a span set of nominally feasible motions.
    [Show full text]
  • The Topology on the Space E
    UNIVERSITATIS IAGELLONICAE ACTA MATHEMATICA doi: 10.4467/20843828AM.13.005.2281 FASCICULUS LI, 2013 THE TOPOLOGY ON THE SPACE δEχ by Hoang Nhat Quy Abstract. In this paper, we construct a locally convex topology on the vector space δEχ. We also prove that with this topology it is a non-separable and non-reflexive Fr´echet space. n − 1. Introduction. Let Ω be a hyperconvex domain in C ; by PSH (Ω) we denote the set of negative plurisubharmonic (psh) functions on Ω. We denote by H = H(Ω) any subclass of the functions in PSH−(Ω). Set δH = δH(Ω) = 1 H − H, that is the set of the functions u 2 Lloc(Ω) which can be written as u = v − w, where v; w 2 H. If H is a convex cone in PSH−(Ω) then δH is a vector space. Let us recall the topology on the space δH when H is a special subclass of negative plurisubharmonic functions. In [7], Cegrell has introduced and studied some energy classes, especially two classes F and E. He shows that E is the largest subclass on which the Monge{Amp`ereoperator is well defined and is continuous under decreasing sequences of negative plurisubharmonic functions (see Theorem 4.5 in [7]). In [10], Cegrell and Wiklund have introduced and investigated the vector space δF equipped with the Monge{Amp`erenorm. They have shown that the space δF is a non-separable Banach space and the topological dual space of δF can be written as (δF)0 = F 0 − F 0 = δF 0.
    [Show full text]