Give an example of a language $L$ where $\min(\max L)\neq \max(\min L)$.
I thought of the following language $L=\{a,bc, abc\}$.
$$ \min L=\{a,bc\}, \max L = \{abc\} $$ Then: $$ \min(\max L)=\min (\{abc\})=\{abc\}\neq \max(\min L)=\max(\{a,bc\})=\{a,bc\} $$ This seems too simple so I'm wondering if it's correct.
The definitions of $\max, \min$: $$ \min L= \{x|x\in L \land \text{there doesn't exist a non-empty substring }y \text{ of } x \text{ such that } y\in L \}\\ \max L = \{x|x\in L \land \lnot \exists y: xy\in L, y\neq \epsilon\} $$
Your example is perfect.
Being simple is an advantage and not a problem ;)