Minimization of norm distance using SDPs, cone programming, etc.Minimization of Frobenius norm and Schur...

What Happens when Passenger Refuses to Fly Boeing 737 Max?

Makefile strange variable substitution

Latex does not go to next line

Do f-stop and exposure time perfectly cancel?

What wound would be of little consequence to a biped but terrible for a quadruped?

Could you please stop shuffling the deck and play already?

How to secure an aircraft at a transient parking space?

Virginia employer terminated employee and wants signing bonus returned

Why does the negative sign arise in this thermodynamic relation?

What problems would a superhuman have whose skin is constantly hot?

Was Luke Skywalker the leader of the Rebel forces on Hoth?

Why was Goose renamed from Chewie for the Captain Marvel film?

Are babies of evil humanoid species inherently evil?

How are showroom/display vehicles prepared?

Difference on montgomery curve equation between EFD and RFC7748

Does this video of collapsing warehouse shelves show a real incident?

Database Backup for data and log files

Reversed Sudoku

Why doesn't this Google Translate ad use the word "Translation" instead of "Translate"?

In the quantum hamiltonian, why does kinetic energy turn into an operator while potential doesn't?

Counting all the hearts

Definition of Statistic

How did Alan Turing break the enigma code using the hint given by the lady in the bar?

Does a warlock using the Darkness/Devil's Sight combo still have advantage on ranged attacks against a target outside the Darkness?



Minimization of norm distance using SDPs, cone programming, etc.


Minimization of Frobenius norm and Schur complementDual of a semidefinite programSemidefinite programming formulation for a simple minimizationRedefining an SDP problemMinimization of Frobenius norm and Schur complementHow to solve this minimization problem involving the nuclear norm?Transforming a nearest matrix optimization problem to a standard formSpectral norm minimizationProjection onto the Set of Circulant Matricesprimal and dual semi-definite programs - problemThe Exponential Cone and Semi-definite programming













0












$begingroup$


Building on top of this question Minimization of Frobenius norm using SDPs, I would like to know for what class of norms ($ Vert cdot Vert $ in the following) can we represent the following problem using semidefinite programming (SDP), or cone programming, or some standard optimization problem:



$$
begin{align*}
& text{min. } Vert A - X Vert \
& text{s.t. }X in mathcal{S}
end{align*}
$$



where $A$ is a (symmetric) matrix and $mathcal{S}$ is some convex set, for which the membership condition can be represented say using SDP constraints.



In particular, I am interested in the following cases:




  1. The case where the problem can be represented using SDPs.

  2. The norm is the Schatten p-norm.

  3. The norm is an Operator norm.


Finally, any reference for dealing with this class of problems would be much appreciated.










share|cite|improve this question











$endgroup$

















    0












    $begingroup$


    Building on top of this question Minimization of Frobenius norm using SDPs, I would like to know for what class of norms ($ Vert cdot Vert $ in the following) can we represent the following problem using semidefinite programming (SDP), or cone programming, or some standard optimization problem:



    $$
    begin{align*}
    & text{min. } Vert A - X Vert \
    & text{s.t. }X in mathcal{S}
    end{align*}
    $$



    where $A$ is a (symmetric) matrix and $mathcal{S}$ is some convex set, for which the membership condition can be represented say using SDP constraints.



    In particular, I am interested in the following cases:




    1. The case where the problem can be represented using SDPs.

    2. The norm is the Schatten p-norm.

    3. The norm is an Operator norm.


    Finally, any reference for dealing with this class of problems would be much appreciated.










    share|cite|improve this question











    $endgroup$















      0












      0








      0





      $begingroup$


      Building on top of this question Minimization of Frobenius norm using SDPs, I would like to know for what class of norms ($ Vert cdot Vert $ in the following) can we represent the following problem using semidefinite programming (SDP), or cone programming, or some standard optimization problem:



      $$
      begin{align*}
      & text{min. } Vert A - X Vert \
      & text{s.t. }X in mathcal{S}
      end{align*}
      $$



      where $A$ is a (symmetric) matrix and $mathcal{S}$ is some convex set, for which the membership condition can be represented say using SDP constraints.



      In particular, I am interested in the following cases:




      1. The case where the problem can be represented using SDPs.

      2. The norm is the Schatten p-norm.

      3. The norm is an Operator norm.


      Finally, any reference for dealing with this class of problems would be much appreciated.










      share|cite|improve this question











      $endgroup$




      Building on top of this question Minimization of Frobenius norm using SDPs, I would like to know for what class of norms ($ Vert cdot Vert $ in the following) can we represent the following problem using semidefinite programming (SDP), or cone programming, or some standard optimization problem:



      $$
      begin{align*}
      & text{min. } Vert A - X Vert \
      & text{s.t. }X in mathcal{S}
      end{align*}
      $$



      where $A$ is a (symmetric) matrix and $mathcal{S}$ is some convex set, for which the membership condition can be represented say using SDP constraints.



      In particular, I am interested in the following cases:




      1. The case where the problem can be represented using SDPs.

      2. The norm is the Schatten p-norm.

      3. The norm is an Operator norm.


      Finally, any reference for dealing with this class of problems would be much appreciated.







      matrices convex-analysis convex-optimization semidefinite-programming matrix-norms






      share|cite|improve this question















      share|cite|improve this question













      share|cite|improve this question




      share|cite|improve this question








      edited 2 days ago









      Rodrigo de Azevedo

      13k41960




      13k41960










      asked 2 days ago









      NoelNoel

      827




      827






















          1 Answer
          1






          active

          oldest

          votes


















          2












          $begingroup$

          A lazy answer would be to simply list the help on norm which lists cases that are supported out of the box in the modelling language YALMIP (which would write these using LP/SOCP/SDP formulations)



           For matrices...
          norm(X) models the largest singular value of X, max(svd(X)).
          norm(X,2) is the same as norm(X).
          norm(X,1) models the 1-norm of X, the largest column sum, max(sum(abs(X))).
          norm(X,inf) models the infinity norm of X, the largest row sum, max(sum(abs(X'))).
          norm(X,'inf') same as above
          norm(X,'fro') models the Frobenius norm, sqrt(sum(diag(X'*X))).
          norm(X,'nuc') models the Nuclear norm, sum of singular values.
          norm(X,'*') same as above
          norm(X,'tv') models the (isotropic) total variation semi-norm
          For vectors...
          norm(V) = norm(V,2) = standard Euclidean norm.
          norm(V,inf) = max(abs(V)).
          norm(V,1) = sum(abs(V))


          In addition to that, you have that $(sum |x_i|^p)^{1/p}$ is conic representable for $pgeq 0$ (second-order cone, or more conveniently but perhaps slightly more esoteric using the power cone) thus covering arbitrary Schatten p-norms on matrices, as long as you can get that operator to act on a vector which upper bounds a sorted vector of the eigenvalues of $X^TX$ (which you also can through intricate modelling...)



          Everything is available in (but hidden well...)




          Nesterov, Yurii; Arkadii, Nemirovskii (1995). Interior-Point
          Polynomial Algorithms in Convex Programming. Society for Industrial
          and Applied Mathematics. ISBN 0898715156.







          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            One trivial detail—the vector $p$ norms are SOCP-representable only for rational $p$. You'll need that power code for the fully generic case. And I personally don't know about the representability of induced matrix $p$-norms (other than $1$, $2$, and $infty$).
            $endgroup$
            – Michael Grant
            2 days ago












          • $begingroup$
            @Johan I don't understand what you mean by: 'In addition to that, you have that... (which you also can through intricate modelling...)'. Could you elaborate/ give a simple example?
            $endgroup$
            – Noel
            yesterday










          • $begingroup$
            What I mean is that you through SDP modelling can represent the function $f(v)$ where $v$ are the eigenvalues of a symmetrix matrix and $f$ is any permutation invariant conic representable function.
            $endgroup$
            – Johan Löfberg
            yesterday











          Your Answer





          StackExchange.ifUsing("editor", function () {
          return StackExchange.using("mathjaxEditing", function () {
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
          });
          });
          }, "mathjax-editing");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "69"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3140803%2fminimization-of-norm-distance-using-sdps-cone-programming-etc%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2












          $begingroup$

          A lazy answer would be to simply list the help on norm which lists cases that are supported out of the box in the modelling language YALMIP (which would write these using LP/SOCP/SDP formulations)



           For matrices...
          norm(X) models the largest singular value of X, max(svd(X)).
          norm(X,2) is the same as norm(X).
          norm(X,1) models the 1-norm of X, the largest column sum, max(sum(abs(X))).
          norm(X,inf) models the infinity norm of X, the largest row sum, max(sum(abs(X'))).
          norm(X,'inf') same as above
          norm(X,'fro') models the Frobenius norm, sqrt(sum(diag(X'*X))).
          norm(X,'nuc') models the Nuclear norm, sum of singular values.
          norm(X,'*') same as above
          norm(X,'tv') models the (isotropic) total variation semi-norm
          For vectors...
          norm(V) = norm(V,2) = standard Euclidean norm.
          norm(V,inf) = max(abs(V)).
          norm(V,1) = sum(abs(V))


          In addition to that, you have that $(sum |x_i|^p)^{1/p}$ is conic representable for $pgeq 0$ (second-order cone, or more conveniently but perhaps slightly more esoteric using the power cone) thus covering arbitrary Schatten p-norms on matrices, as long as you can get that operator to act on a vector which upper bounds a sorted vector of the eigenvalues of $X^TX$ (which you also can through intricate modelling...)



          Everything is available in (but hidden well...)




          Nesterov, Yurii; Arkadii, Nemirovskii (1995). Interior-Point
          Polynomial Algorithms in Convex Programming. Society for Industrial
          and Applied Mathematics. ISBN 0898715156.







          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            One trivial detail—the vector $p$ norms are SOCP-representable only for rational $p$. You'll need that power code for the fully generic case. And I personally don't know about the representability of induced matrix $p$-norms (other than $1$, $2$, and $infty$).
            $endgroup$
            – Michael Grant
            2 days ago












          • $begingroup$
            @Johan I don't understand what you mean by: 'In addition to that, you have that... (which you also can through intricate modelling...)'. Could you elaborate/ give a simple example?
            $endgroup$
            – Noel
            yesterday










          • $begingroup$
            What I mean is that you through SDP modelling can represent the function $f(v)$ where $v$ are the eigenvalues of a symmetrix matrix and $f$ is any permutation invariant conic representable function.
            $endgroup$
            – Johan Löfberg
            yesterday
















          2












          $begingroup$

          A lazy answer would be to simply list the help on norm which lists cases that are supported out of the box in the modelling language YALMIP (which would write these using LP/SOCP/SDP formulations)



           For matrices...
          norm(X) models the largest singular value of X, max(svd(X)).
          norm(X,2) is the same as norm(X).
          norm(X,1) models the 1-norm of X, the largest column sum, max(sum(abs(X))).
          norm(X,inf) models the infinity norm of X, the largest row sum, max(sum(abs(X'))).
          norm(X,'inf') same as above
          norm(X,'fro') models the Frobenius norm, sqrt(sum(diag(X'*X))).
          norm(X,'nuc') models the Nuclear norm, sum of singular values.
          norm(X,'*') same as above
          norm(X,'tv') models the (isotropic) total variation semi-norm
          For vectors...
          norm(V) = norm(V,2) = standard Euclidean norm.
          norm(V,inf) = max(abs(V)).
          norm(V,1) = sum(abs(V))


          In addition to that, you have that $(sum |x_i|^p)^{1/p}$ is conic representable for $pgeq 0$ (second-order cone, or more conveniently but perhaps slightly more esoteric using the power cone) thus covering arbitrary Schatten p-norms on matrices, as long as you can get that operator to act on a vector which upper bounds a sorted vector of the eigenvalues of $X^TX$ (which you also can through intricate modelling...)



          Everything is available in (but hidden well...)




          Nesterov, Yurii; Arkadii, Nemirovskii (1995). Interior-Point
          Polynomial Algorithms in Convex Programming. Society for Industrial
          and Applied Mathematics. ISBN 0898715156.







          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            One trivial detail—the vector $p$ norms are SOCP-representable only for rational $p$. You'll need that power code for the fully generic case. And I personally don't know about the representability of induced matrix $p$-norms (other than $1$, $2$, and $infty$).
            $endgroup$
            – Michael Grant
            2 days ago












          • $begingroup$
            @Johan I don't understand what you mean by: 'In addition to that, you have that... (which you also can through intricate modelling...)'. Could you elaborate/ give a simple example?
            $endgroup$
            – Noel
            yesterday










          • $begingroup$
            What I mean is that you through SDP modelling can represent the function $f(v)$ where $v$ are the eigenvalues of a symmetrix matrix and $f$ is any permutation invariant conic representable function.
            $endgroup$
            – Johan Löfberg
            yesterday














          2












          2








          2





          $begingroup$

          A lazy answer would be to simply list the help on norm which lists cases that are supported out of the box in the modelling language YALMIP (which would write these using LP/SOCP/SDP formulations)



           For matrices...
          norm(X) models the largest singular value of X, max(svd(X)).
          norm(X,2) is the same as norm(X).
          norm(X,1) models the 1-norm of X, the largest column sum, max(sum(abs(X))).
          norm(X,inf) models the infinity norm of X, the largest row sum, max(sum(abs(X'))).
          norm(X,'inf') same as above
          norm(X,'fro') models the Frobenius norm, sqrt(sum(diag(X'*X))).
          norm(X,'nuc') models the Nuclear norm, sum of singular values.
          norm(X,'*') same as above
          norm(X,'tv') models the (isotropic) total variation semi-norm
          For vectors...
          norm(V) = norm(V,2) = standard Euclidean norm.
          norm(V,inf) = max(abs(V)).
          norm(V,1) = sum(abs(V))


          In addition to that, you have that $(sum |x_i|^p)^{1/p}$ is conic representable for $pgeq 0$ (second-order cone, or more conveniently but perhaps slightly more esoteric using the power cone) thus covering arbitrary Schatten p-norms on matrices, as long as you can get that operator to act on a vector which upper bounds a sorted vector of the eigenvalues of $X^TX$ (which you also can through intricate modelling...)



          Everything is available in (but hidden well...)




          Nesterov, Yurii; Arkadii, Nemirovskii (1995). Interior-Point
          Polynomial Algorithms in Convex Programming. Society for Industrial
          and Applied Mathematics. ISBN 0898715156.







          share|cite|improve this answer









          $endgroup$



          A lazy answer would be to simply list the help on norm which lists cases that are supported out of the box in the modelling language YALMIP (which would write these using LP/SOCP/SDP formulations)



           For matrices...
          norm(X) models the largest singular value of X, max(svd(X)).
          norm(X,2) is the same as norm(X).
          norm(X,1) models the 1-norm of X, the largest column sum, max(sum(abs(X))).
          norm(X,inf) models the infinity norm of X, the largest row sum, max(sum(abs(X'))).
          norm(X,'inf') same as above
          norm(X,'fro') models the Frobenius norm, sqrt(sum(diag(X'*X))).
          norm(X,'nuc') models the Nuclear norm, sum of singular values.
          norm(X,'*') same as above
          norm(X,'tv') models the (isotropic) total variation semi-norm
          For vectors...
          norm(V) = norm(V,2) = standard Euclidean norm.
          norm(V,inf) = max(abs(V)).
          norm(V,1) = sum(abs(V))


          In addition to that, you have that $(sum |x_i|^p)^{1/p}$ is conic representable for $pgeq 0$ (second-order cone, or more conveniently but perhaps slightly more esoteric using the power cone) thus covering arbitrary Schatten p-norms on matrices, as long as you can get that operator to act on a vector which upper bounds a sorted vector of the eigenvalues of $X^TX$ (which you also can through intricate modelling...)



          Everything is available in (but hidden well...)




          Nesterov, Yurii; Arkadii, Nemirovskii (1995). Interior-Point
          Polynomial Algorithms in Convex Programming. Society for Industrial
          and Applied Mathematics. ISBN 0898715156.








          share|cite|improve this answer












          share|cite|improve this answer



          share|cite|improve this answer










          answered 2 days ago









          Johan LöfbergJohan Löfberg

          5,3401811




          5,3401811












          • $begingroup$
            One trivial detail—the vector $p$ norms are SOCP-representable only for rational $p$. You'll need that power code for the fully generic case. And I personally don't know about the representability of induced matrix $p$-norms (other than $1$, $2$, and $infty$).
            $endgroup$
            – Michael Grant
            2 days ago












          • $begingroup$
            @Johan I don't understand what you mean by: 'In addition to that, you have that... (which you also can through intricate modelling...)'. Could you elaborate/ give a simple example?
            $endgroup$
            – Noel
            yesterday










          • $begingroup$
            What I mean is that you through SDP modelling can represent the function $f(v)$ where $v$ are the eigenvalues of a symmetrix matrix and $f$ is any permutation invariant conic representable function.
            $endgroup$
            – Johan Löfberg
            yesterday


















          • $begingroup$
            One trivial detail—the vector $p$ norms are SOCP-representable only for rational $p$. You'll need that power code for the fully generic case. And I personally don't know about the representability of induced matrix $p$-norms (other than $1$, $2$, and $infty$).
            $endgroup$
            – Michael Grant
            2 days ago












          • $begingroup$
            @Johan I don't understand what you mean by: 'In addition to that, you have that... (which you also can through intricate modelling...)'. Could you elaborate/ give a simple example?
            $endgroup$
            – Noel
            yesterday










          • $begingroup$
            What I mean is that you through SDP modelling can represent the function $f(v)$ where $v$ are the eigenvalues of a symmetrix matrix and $f$ is any permutation invariant conic representable function.
            $endgroup$
            – Johan Löfberg
            yesterday
















          $begingroup$
          One trivial detail—the vector $p$ norms are SOCP-representable only for rational $p$. You'll need that power code for the fully generic case. And I personally don't know about the representability of induced matrix $p$-norms (other than $1$, $2$, and $infty$).
          $endgroup$
          – Michael Grant
          2 days ago






          $begingroup$
          One trivial detail—the vector $p$ norms are SOCP-representable only for rational $p$. You'll need that power code for the fully generic case. And I personally don't know about the representability of induced matrix $p$-norms (other than $1$, $2$, and $infty$).
          $endgroup$
          – Michael Grant
          2 days ago














          $begingroup$
          @Johan I don't understand what you mean by: 'In addition to that, you have that... (which you also can through intricate modelling...)'. Could you elaborate/ give a simple example?
          $endgroup$
          – Noel
          yesterday




          $begingroup$
          @Johan I don't understand what you mean by: 'In addition to that, you have that... (which you also can through intricate modelling...)'. Could you elaborate/ give a simple example?
          $endgroup$
          – Noel
          yesterday












          $begingroup$
          What I mean is that you through SDP modelling can represent the function $f(v)$ where $v$ are the eigenvalues of a symmetrix matrix and $f$ is any permutation invariant conic representable function.
          $endgroup$
          – Johan Löfberg
          yesterday




          $begingroup$
          What I mean is that you through SDP modelling can represent the function $f(v)$ where $v$ are the eigenvalues of a symmetrix matrix and $f$ is any permutation invariant conic representable function.
          $endgroup$
          – Johan Löfberg
          yesterday


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Mathematics Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3140803%2fminimization-of-norm-distance-using-sdps-cone-programming-etc%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

          Fil:Tokke komm.svg

          Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?