I want to say: The $x$ that minimizes $f(x)$ while keeping $f(x)$ above $t$.
I know I can write "the $x$ that minimizes $f(x)$" like this: $x = \arg\min_x f(x)$.
How would I complete that to say "while keeping $f(x)$ above $t$"?
I want to say: The $x$ that minimizes $f(x)$ while keeping $f(x)$ above $t$.
I know I can write "the $x$ that minimizes $f(x)$" like this: $x = \arg\min_x f(x)$.
How would I complete that to say "while keeping $f(x)$ above $t$"?
$\newcommand{amin}{\operatorname*{argmin}}$The best suggestion was made by lhf in the comments: $$\amin_{\substack{x \\ f(x) > t}} f(x).$$ You could alternatively use the inverse image notation, i.e. $$f^{-1}(t, \infty) := \{x : f(x) \in (t, \infty)\} = \{x : f(x) > t\}$$ to write $$\amin_{x \in f^{-1}(t, \infty)} f(x).$$