Skip to main content

Questions tagged [quadratic-programming]

Filter by
Sorted by
Tagged with
0 votes
0 answers
25 views

Least squares leads to an n-dimensional "parabola" in the parameters. I assume the same is valid for other constrained least squares like non-negative least-squares. This may be a wrong ...
almon's user avatar
  • 1
1 vote
1 answer
51 views

Given an MxN matrix A, I want to find the nearest matrix B (least squares fit: ie minimize$\displaystyle\sum_{i,j} (B_{ij} - A_{ij})^2$) such that $$ \forall i_1,j_1,i_2,j_2 : \\ i_1 \leq i_2 \land ...
dspyz's user avatar
  • 456
2 votes
2 answers
278 views

Consider the problem $$ \min_x \frac{1}{2} x^\top Q x + c^\top x \qquad \text{s.t.}\\ Ax=b\\ x \in \mathbb{Z}^n $$ where $Q$ is a positive (semi)definite matrix. Clearly, feasibility can be decided in ...
Lisa E.'s user avatar
  • 555
3 votes
1 answer
136 views

The problem of interest is $$ \min_{x\in\mathbb{Z}^n} \frac{1}{2}x^\top Q x + c^\top x $$ where $Q$ is a positive definite matrix. I am reasonably sure this can't be solved in poly-time, since the ...
Sriram's user avatar
  • 387
0 votes
1 answer
277 views

I'd like to start by clarifying I'm by no means an expert in any of this, so take everything I say with a grain of salt. Convex and Non-convex Optimization are subfields of mathematical optimization ...
Vee Amona's user avatar
2 votes
1 answer
202 views

I'am trying to prove the following binary quadratic integer programming problem NP hard. $$ \min \frac{\sum\limits_{i=1}^m(u_i-\bar u)^2}{m}\text{ , where }u=Q x,Q\in\mathbb{R}^{m\times n}\\ s.t. \...
OvinaSun's user avatar
1 vote
0 answers
73 views

Let $\Delta_n :=${$x\in \mathbb{R}^n\colon \sum_{i=1}^n x_i = 1$} denote the probability simplex in $\mathbb{R}^n$ and $A^{n \times n}$ be diagonalizable matrix. I would like to know what is the ...
user6952886's user avatar
0 votes
0 answers
38 views

MAX-QP problem (quadratic programming on boolean cube) statement: Given symmetrical matrix $A$ with 0 on diagonal $$A = (a_{ij}) : A^T = A, a_{ii} = 0$$ Find maximum $x^TAx$ where $x \in \{0, 1\}^n$, ...
envy grunt's user avatar
0 votes
1 answer
154 views

I am trying to understand SVMs in depth watching lectures from MIT. The professor to reduces the classification problem into an optimization problem. To do that, he first defines the decision and ...
HelloWorld's user avatar
3 votes
0 answers
281 views

A symmetric matrix $A\in \Bbb{R}^{n\times n}$ is copositive if for every vector $x\in\Bbb{R}^n$ with non-negative entries, we have $$x^TAx \ge 0.$$ What are known methods to check if a specific matrix ...
Zach Hunter's user avatar
4 votes
0 answers
134 views

Consider the following program: \begin{align} \max_x ~& x^TQx \\ \mbox{s.t.} ~& Ax \geq b \end{align} where $Q$ is a symmetric (possibly indefinite) matrix and the inequality is element-wise ...
cangrejo's user avatar
  • 168
5 votes
1 answer
1k views

I could not find the answer on the Internet. The case of quadratic programming with constraints is already solved on this forum, see Transforming SAT to Quadratic Programming in polynomial time. But ...
Daniel Porumbel's user avatar
1 vote
2 answers
282 views

I am wondering if a Bayesian Optimization framework (e.g. Google's Vizier) can be used in lieu of a traditional solver like Gurobi or CPLEX. In trying to answer this question, I realized that I don'...
Sasha the Noob's user avatar
1 vote
0 answers
131 views

A Quadratically-Constrainted Quadratic Program consists of optimizing a quadratic objective function while imposing quadratic constraints, which can be inequalities or equalities. Obviously, ...
Alex Meiburg's user avatar
0 votes
0 answers
76 views

I am given a task to prove using 3COLOR that Quadratic Programming is NP-hard. Does anyone have a clue on how this is meant to be done?
Mina Akram's user avatar
0 votes
0 answers
21 views

i just signed up here because im struggling very hard with a problem i gotta solve. What I wanna do is reducing an Instance of 3color to an instance of Quadprog to prove that quadprog is np-hard, and ...
user avatar
0 votes
1 answer
78 views

I am trying to solve the following problem, which is a simplification of our original question: $\max\limits_{x,y}\min \{x_iy_i-b_i \mbox{ for } i=1,\ldots, n: x,y\in \Delta_n\}$ where $\Delta_n$ is ...
Orion T's user avatar
5 votes
2 answers
1k views

Consider the following optimization problem: Given $n\leq 10^3$ vectors $v_i\in\mathbb{R}^2$, all of which are small, i.e., $\|v_i\| \leq 1$, find a subset $S$ of them that minimizes $ \| w + \...
Kirill's user avatar
  • 195
2 votes
0 answers
59 views

I understand that we can approximate solutions to Integer Quadratic Programming optimization problems containing just a positive semi definite matrix, as outlined here (i.e. the Q matrix): https://...
Alexis Pribula's user avatar
0 votes
0 answers
97 views

Is the follwing promise problem NP-hard? Input: A system of quadratic equations. Promise: The system has either one or zero solutions. Question: Does the system have a solution?
Dudi Frid's user avatar
  • 231
0 votes
0 answers
331 views

The Quadratic Programming problem is as follows: $$\min_x \{\frac12x^THx+x^Tg\}$$ $$Ax\le b$$ where $H$ is symmetric and positive semi-definite. What is the complexity of the active set method for ...
ar2015's user avatar
  • 131
2 votes
1 answer
239 views

In this question, we see how to model boolean logic in $0 - 1$ ILPs. Moving to a relaxation, modelling $(x > 0 \vee y > 0) \Leftrightarrow z > 0$ with $x,y,z \in [0,1]$ with linear ...
G. Bach's user avatar
  • 2,019