How can I prove a a negative norm is not convex?

196 Views Asked by At

I want to prove that $f(x) = -\lVert x \rVert^2$ is not convex.

I know that $f(x) = \lVert x \rVert^2$ is convex by the following proof:

\begin{equation} \label{eq1} \begin{split} \lVert \alpha x + (1 - \alpha )y \rVert^2 & \leq \lVert \alpha x\rVert^2 + \lVert (1 - \alpha)y\rVert^2 \\ & = \alpha^2\lVert x\rVert^2 + (1 - \alpha)^2\lVert y\rVert^2 \\ & \leq \alpha \lVert x\rVert^2 + (1 - \alpha) \lVert y\rVert^2 \end{split} \end{equation}

How do I prove that the negative version of this is not convex? Intuitively I know that it must be concave, but I don't know how I can prove.

2

There are 2 best solutions below

0
On

You have $||a.x+(1-a).y||^2 \leq a.||x||^2 + (1-a).||y||^2$ for $0\leq a\leq 1$. Multiplying both sides by -1, you have

$-||a.x+(1-a).y||^2 \geq a.(-||x||^2) + (1-a).(-||y||^2)$

Now, think about the equality. There are a few cases where the equality occurs. Thus, there are many counterexamples as shown in the comments.

0
On

To prove $f$ is not convex, all you need is to find an example where $f(\alpha x + (1-\alpha) y) > \alpha f(x) + (1-\alpha) f(y)$ with $0 \le \alpha \le 1$. Try $\alpha = 1/2$ and $y=-x$.