In some applications (in my case statistics) I find quantities defined using "inf", e.g.
$ ABC = \inf\{x|F_X(x)\ge\alpha\}$
Why not define simply:
$F_X(x=ABC) = \alpha$
I imagine it has something to do with the possibility of multiple values for $x$ satisfying the condidion, right?
Assuming, single valued solutions to the condition could be garanteed, is there a prettier notation for defining ABC without using set builder notation? (Since there is only a single value, set notation seems non-intuitive.)
$ ABC = \{x|F_X(x)=\alpha\}$
The reason why one writes "inf" in this case is that there may not be any x satisfiying $F_X(x) = \alpha$. In this case the "equals" condition would yield an empty set and be useless. Therefore you need to define it as the infimum.
Consider for example $\alpha=0$, $x \in M = \{\frac{1}{n} | n \in \mathbb{N}\}$ and $F(x)=x$. Then there exists no $x$ such that $F(x) = \alpha$, but $\inf_{x \in M} \{x | F(x)\geq \alpha \} = \{0\}$.
If it can be shown that $\exists ! x \text{ }$ such that $F_X(x)=\alpha $, then you can simply define $x =F^{-1}_X(\alpha) $.