What is the exact procedure to calculate $\max_{x} f(x,y)$?
This is my opinion:
- Choose one certain $y = y_0$, and then scan all $x$,find the max value of $f(x, y_0)$ named $f_0$;
- Choose another certain $y = y_1$, and do the same thing, I can get $f_1$;
- Repeat 1 and 2, I can get a function named $g(y)$, and $g(y) = \max_{x} f(x,y)$
Is that right?
Similar question: How to interpret max(min(expression))??