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}.
In that case, if x > 2, then y = -1 minimizes the expression, but if x < 2, then y = 1 minimizes the expression.
– capybaralet Feb 21 '15 at 21:25