A free MATLAB toolbox for formulating and solving sums of squares (SOS) optimization programs.
SOSTOOLS is a free MATLAB toolbox for formulating and solving sums of squares (SOS) optimization programs. SOSTOOLS can be used to specify and solve sum of squares polynomial problems using a very simple, flexible, and intuitive high-level notation. The SOS programs can be solved using SeDuMi, SDPT3, CSDP, SDPNAL+, CDCS, SDPA, and Mosek. All these are well-known semidefinite programming solvers, with SOSTOOLS handling internally all the necessary reformulations and data conversion.
A sum of squares (SOS) program, in the simplest case, has the form:
minimize: c_1 * u_1 + ... + c_n * u_n
subject to constraints:
P_i(x) := A_i0(x) + A_i1(x) * u_1 + ... + A_in(x) * u_n
are sums of squares of polynomials (for i=1..n).
Here, the A_ij(x)
are multivariate polynomials, and the decision variables u_i
are scalars. This is a convex optimization problem, since the objective function is linear and the set of feasible u_i
is convex.
While this looks quite nice, perhaps you are actually interested in more concrete problems such as:
- Constrained or unconstrained optimization of polynomial functions.
- Mixed continuous-discrete optimization.
- Finding Lyapunov or Bendixson-Dulac functions for nonlinear dynamical systems (with polynomial vector fields).
- Deciding copositivity of a matrix.
- Inequalities in probability theory.
- Distinguishing separable from entangled states in quantum systems.
Or, more generally, problems that deal with basic semialgebraic sets (sets defined by polynomial equalities and inequalities).
For a quick introduction and examples, please see Getting started with Sum of Squares and the SOSTOOLS user's guide.
SOSTOOLS is freely available under the GNU public license v3.0.
Archived releases of SOSTOOLS prior to v4.00 can be bounds at the following sites:
-
CDS at Caltech: https://www.cds.caltech.edu/sostools
-
LIDS at MIT: https://www.mit.edu/~parrilo/sostools
-
Control Group at Oxford: http://www.eng.ox.ac.uk/control/sostools
-
Control group at ASU: http://control.asu.edu/sostools/
To install and run SOSTOOLS, you need:
- MATLAB version 6.0 or later.
- MATLAB Symbolic Math Toolbox version 2.1.2 (optional) for SOSTOOLS versions 2.05 and earlier, or the current version of the MATLAB Symbolic Math Toolbox for SOSTOOLS version 3.00 and later.
- An SDP solver, either SeDuMi, SDPT3, CSDP, SDPNAL+, CDCS, SDPA, or Mosek. Most of these solvers and their documentation can be downloaded for free, and Mosek offers a free academic license. For information on how to install these solvers, you are referred to their respective installation instructions.
- SOSTOOLS can easily be run on Windows or macOS machines. It utilizes MATLAB sparse matrix representation for good performance and to reduce the amount of memory needed.
Detailed installation instructions are available in the SOSTOOLS user's guide.
The software has been written and is maintained by:
- Antonis Papachristodoulou
- James Anderson
- Giorgio Valmorbida
- Stephen Prajna
- Peter Seiler
- Pablo A. Parrilo
- Matthew M. Peet
- Declan Jagt
For a detailed explanation of the theory and applications of sums of squares programming, as well as references to related work, please see:
-
Structured Semidefinite Programs and Semialgebraic Geometry Methods in Robustness and Optimization. California Institute of Technology, Pasadena, CA, May 2000. Abstract, Pdf, CaltechTHESIS.
-
Semidefinite programming relaxations for semialgebraic problems. P. A. Parrilo, Mathematical Programming Ser. B, Vol. 96, No.2, pp. 293-320, 2003. Abstract, pdf.
-
Minimizing polynomial functions P. A. Parrilo, B. Sturmfels. arXiv.
For more references please see http://hot.caltech.edu/math.html but also the authors' websites.
For comments, bug reports, encouragement, suggestions, complaints, etc., please send email to: [email protected].
If you use SOSTOOLS for research purposes, we'd be happy to hear about it and mention it in the reference guide. Please drop us a line, to [email protected].
Please use the following when citing SOSTOOLS:
@manual{sostools,
author = {A. Papachristodoulou and J. Anderson and G. Valmorbida and S. Prajna and P. Seiler and P. A. Parrilo},
title = {{SOSTOOLS}: Sum of squares optimization toolbox for {MATLAB}},
note = {Available from \texttt{http://www.eng.ox.ac.uk/control/sostools},
\texttt{http://www.cds.caltech.edu/sostools} and
\texttt{http://www.mit.edu/\~{}parrilo/sostools}},
year = {2013},
address = {\texttt{http://arxiv.org/abs/1310.4716}},
}
The following are some patches and add-ons written by other people:
- INTSOSTOOLS for formulating and solving optimization problems subject to one-dimensional integral inequalities.
- frlib for a pre-processing facial reduction step.