4

Given a strictly convex function $f(x,y)$, is the following function still strictly convex?

$$ g(x) := \inf_y f(x,y) $$

Is there any counterexample for it?


There is a question here Is the minimum of a parametric convex function convex again? But the question is for the convex case, does this hold for the strictly convex case?

Harry
  • 697
  • 3
  • 14
  • some vocab might help: $g$ is sometimes called a "marginal function" of $f$. I know that marginalization preserves quasiconvexity, lower semicontinuity, and convexity. However, I am not sure for strict convexity! – Zim Sep 26 '22 at 10:45
  • 1
    Under the additional assumption that the infimum is attained (i.e. $g(x, y) = \min_y f(x, y)$ one can show that $g$ is strictly convex. – Martin R Sep 26 '22 at 12:21

3 Answers3

7

As demonstrated in the other answers, $g$ need not be strictly convex. However, under the additional assumption that the infimum is attained, i.e. $g(x) = \min_y f(x, y)$ for all $x$, one can show that $g$ is strictly convex:

Let $x_1, x_2$ be distinct points in the domain of $g$ and $0 < \lambda < 1$. Choose $y_1, y_2$ such that $g(x_1) = f(x_1, y_1)$ and $g(x_2) = f(x_2, y_2)$. Then $$ \begin{align} g(\lambda x_1 + (1-\lambda) x_2) &= \inf_y f(\lambda x_1 + (1-\lambda) x_2, y)\\ &\le f(\lambda x_1 + (1-\lambda) x_2), \lambda y_1 + (1-\lambda) y_2) \\ &\boxed{<} \lambda f(x_1, y_1) + (1-\lambda)f(x_2, y_2) \\ &= \lambda g(x_1) + (1-\lambda)g(x_2) \, . \end{align} $$

Martin R
  • 128,226
6

The function $f \colon \mathbb R^2 \to \mathbb R$ given by $$ f(x,y) = \exp(y) + \exp(x+y) $$ is a counterexample, since $g(x) = 0$.

gerw
  • 33,373
2

Let $$ f(x,y)=e^{x^2-y}\,. $$ The gradient and Hessian of this function are $$ \nabla f=\begin{pmatrix}2x\\-1 \end{pmatrix}e^{x^2-y}\,,\quad\nabla^2f=\begin{pmatrix}2+4x^2&-2x\\-2x&1\end{pmatrix}e^{x^2-y}\,. $$ Both eigenvalues of the Hessian are real and strictly greater zero. The function $f$ is therefore strictly convex. However, $$ g(x)=\inf_yf(x,y)\equiv 0 $$ is only convex.

Kurt G.
  • 17,136