HiveBrain v1.2.0
Get Started
← Back to all entries
patternMinor

Can one have a condition like this in semidefinite programming?

Submitted by: @import:stackexchange-cs··
0
Viewed 0 times
thiscanconditionsemidefiniteprogramminglikeonehave

Problem

Is it possible to have the following condition in a semidefinite programming as a constraint?

$
M=
\left[ {\begin{array}{cc}
a & \sqrt{u} \\
\sqrt{u} & b \\
\end{array} } \right]
\geq 0$

where $\geq 0$ means positive semidefinite.

Solution

Assuming that a, b, and u are real variables in your semidefinite program, the answer is negative.

The important fact here is that each constraint in a semidefinite program defines a convex set. Your condition cannot be written as a constraint in a semidefinite program because the set of points (a, b, u) ∈ ℝ3 that satisfy the condition is not convex. I suggest that you try to prove that this set is indeed not convex, but here is a proof (put the mouse cursor in the box below to show the proof):


Proof: (a, b, u) = (1, 1, 1) and (a, b, u) = (3, 3, 9) satisfy the condition, but their midpoint (a, b, u) = (2, 2, 5) does not satisfy the condition.

Context

StackExchange Computer Science Q#9724, answer score: 5

Revisions (0)

No revisions yet.