Why is it that we denote the arguments of the min/max functions with curly braces, i.e. $\{$ and $\}$? My first thought would be that it's related to sets and infimum and supremum, but many times it no longer seems to relate to a set, i.e. when used as such: $\min_{1 \leq i \leq N}\{x_i\}$.
2 Answers
I would not use that notation.
I would either treat the argument of $\min$ as a set (with curly braces): $$\min \{x_i\}_{i=1}^N,$$
or write the argument as a single number, parameterized by indices written below the $\min$: $$\min_{1\leq i\leq N} x_i.$$
But I'm sure you can find any number of other notations in the literature, and as long as you succeed in clearly communicating the intended meaning, there is no single "right" notation.
- 49,280
In the most general definition (at least that I'm aware of) $\min$ can be understood as follows:
Let $X$ be a set and $\preccurlyeq\subseteq X\times X$ be a partial order on $X$. Let $$\mathcal{C}:=\left\{A\in\mathcal{P}(X)\ |\ \exists x_0\in A\ \forall x\in A:\ x_0\preccurlyeq x\right\}.$$ Then, we may define $$\min:=\left\{\left(A,x_0\right)\in\mathcal{C}\times X\ |\ x_0\in A, x_0\preccurlyeq x\ \forall x\in A\right\}$$ and it is easy to see that $\min:\mathcal{C}\to X$ is a map.
Hence, regarding your question, $\min$ is indeed a function taking a set as an argument. Note however, that there is no need for any notion of supremum or infinum.
Now, there are a lot of different notations and in most cases it is hopefully clear what the exact meaning is. Just to give an example:
Let $f:S\to X$ be a function ($S$ any set, $X$ as above). Then, given a subset $T\subseteq S$, one often writes: $$\min_T f:=\min_{y\in T}f(y):=\min\left\{f(y): y\in T\right\}=\min f(T)$$ provided that $f(T)\in\mathcal{C}$.
The example you gave most likely means the following: $\min_{1\leq i\leq N}\left\{x_i\right\}:=\min\left\{x_1,x_2,...,x_N\right\}$.
- 1,352