I am reading this paper:
ai.stanford.edu/~ang/papers/icml04-apprentice.pdf
Step 2 of section 3 is to compute an expression of the form max(min(expr)). What does this mean?
I made a simple example of such an expression and am equally puzzled as to how to evaluate it:
$\max_{x \in (-3,5)} \min_{y \in \{-1,1\}} \frac{x-2}{y}$
EDIT: I changed the example problem (-1,1) -> {-1,1}.
Fix $x \in (-3,5)$. Then, solve the problem $f(x) = \min_{y \in (-1,1)} \frac{x-2}{y}$. Then, you have $f(x)$ defined on $(-3,5)$. Now solve $\max_{x \in (-3,5)} f(x)$.
There are various theorems on problems of the sort, known as minimax theorems (such as sion's minimax theorem, von neumann's minimax theorem, etc.)