I'm trying to make sense of the following argument from a paper I'm reading.
The author has the following upper bound: $$R(T) \le N + O\left(T\sqrt{\frac{\log T}{N}}\right)$$
They then state the following:
"Recall that we can select any value for $N$ so long as it is known to the algorithm before the first round. So we can choose $N$ so as to (approximately) minimize the right-hand side. Noting that the two summands are, resp., monotonically increasing and monotonically decreasing in $N$, we set $N$ so that they are (approximately) equal."
So, the general argument seems to be that, given two functions, $f(x)$ and $g(x)$, where $f(x)$ is monotonically increasing and $g(x)$ is monotonically decreasing, if we can find the solution, $y$, to $f(y)=g(y)$, then we have $\min_x\{f(x)+ g(x)\} \approx f(y) + g(y)$
But I see no reason why this should be true. In fact, if $g$ decreases faster than $f$ increases then $\min_x \{f(x) + g(x)\} \rightarrow - \infty$, right? There has to be something missing here, or something I'm not seeing.
If you restrict your attention to nonnegative monotone functions and take $f,g:\mathbb R\to\mathbb R_{\geq0}$ so that $f$ is nondecreasing and $g$ is nonincreasing, suppose we find some $y$ so that $f(y)=g(y)$. Set $M := f(y)+g(y)$ as our "approximate" minimum for the sum.
By the nonnegativity assumption, we will have for $x>y$ that $f(x)+g(x)\geq f(x)\geq f(y) = \frac M2$ and likewise when $x<y$. I'm not sure what the context of this problem is, but this shows that using a solution $f(y)=g(y)$ in this context will always provide a $2$-approximation for the minimum of $f+g$. Since they're only speaking about an "approximate" minimum, maybe this is sufficient for their purposes?
In fact, a $2$-approximation is the best you can do this way: just take $f(x)=c$ and $g(x)$ so that $g(0)=c$ and $g(x)=0$ for $x\neq0$, then $\min(f+g)=c$ but $f(0)+g(0)=2c$.
Moreover, like you mentioned, dropping the nonnegativity constraint makes this even worse. For a concrete example, you can just take $f=0$ and $g(x)=-x$, then this approximation will output $0$ while the true minimum is unbounded below.