I'm trying to understand how conjugate function is built for example like
$f(x) = -\log x$ where $\operatorname{dom} f = \mathrm{R_{++}}$
One of the lectures which I'm checking
By definition, $f^{*}(y) = \sup_x(yx + \log x)$
Questions:
- what does it mean that the difference is bounded?
- why the difference is bounded if and only if $y < 0$?
- why is it reaching its maximum at $x = \frac{-1}{y}$?
"The difference" refers to $yx - (-\log x)$, which simplifies to $yx + \log x$. This was because the original function was $f(x) = -\log x$ and you're looking at $yx - f(x)$.
It is bounded iff $y < 0$. You can just do the math to figure this out: you want $\sup_x (yx + \log x)$, so differentiate the inside with respect to $x$ and set it to zero, and you get $y + 1/x = 0$, or $y = -1/x$ as claimed. For $y \geq 0$ this cannot work, since then $x \leq 0$, but that would make $\log x$ undefined.