Let $f:[0,1]\to[0,1]$ be a differentiable, strictly increasing, and concave function with $f(0)=0,$ $f(1)=1$, and $f'(0)<\infty$. Does the function $$ F(x,y) = \alpha (x-y)^2 + f^2(x) + \big(1-f(y)\big)^2 $$ have unique minimum on $[0,1]^2$ for any $\alpha>0$?
Minimizing $F$ involves a compromise between minimizing the squared distance between $x$ and $y$, and minimizing the squared distance of the images under the function $f$ of the point $x$ from 0, and $y$ from 1.
Observations:
- The function $F$ is not necessarily convex. For instance, consider $f(x)= \frac{3x-x^3}{2}$ and $\alpha = 1$; then $F_{xx}(1,0) = -4$.
- Any local minimum is at an interior point, because $F_x(0,y) = -2\alpha y < 0$ for any $y>0$; $F_x(1,y) = 2\alpha (1-y) + 2f'(1) > 0$ for any $y<1$; $F_y(x,0) = -2\alpha x - f'(0) < 0$ for any $x\geq 0$; and $F_y(x,1) = 2\alpha (1-x) > 0$ for any $x<1$. Thus it would be sufficient to show that there is unique interior point at which the first-order conditions $F_x(x,y)=F_y(x,y)=0$ are satisfied.
Attempt for solution:
The first-order conditions are: $$ \begin{align} \alpha(y-x) = f(x)f'(x) \tag{1} \\ \alpha(y-x) = \big(1-f(y)\big)f'(y). \tag{2} \end{align} $$
It turns out that there can be multiple points $(x,y)$ satisfying the first order conditions, our hope is that it is possible to exclude the possibility that $F$ would have the same value at both points. Consider that for a given $f$ there are two distinct points $(x_1,y_1)$ and $(x_2,y_2)$ that solve equations (1) and (2). Notice that if $y_1=y_2$, then by (2) also $x_1=x_2$, so the points wont be distinct. Thus, we can WLOG assume that $y_1<y_2$. Since both $y\mapsto 1-f(y)$ and $y\mapsto f'(y)$ are decreasing and positive, $y\mapsto \big(1-f(y)\big)f'(y)$ is decreasing to, and so $$y_1-x_1 > y_2-x_2.$$ \ldots
It turns out that there actually can be multiple distinct global minima of the function $F$. I wrote a Matlab program that:
For example: $$ [x1, x2, y1, y2] = [0.05, 0.15, 0.25, 0.3], $$ $$ [f(x_1), f(x_2), f(y_1), f(y_2) = [0.17, 0.34, 0.45, 0.49], $$ and $$ f'(x_1), f'(x_2), f'(y_1), f'(y_2) \ \dot{=} \ [2.9782, 1.1168, 0.9205, 0.7445], $$ together with $\alpha = 2.5314$. Illustrated in the graphs below.
Here is the Matlab code (the guessing procedure is not optimized, however despite for using brute-force it finds a solution within minutes):