Basic question on math notation of max and min

3.9k Views Asked by At

When we write $\text{max}\left \{x,y \right \}$ and $\text{min}\left \{x,y \right \}$ then what do we actually mean? Does it mean the maximum and minimum of both the things that are inside $\left \{ \right \}$. Say $\epsilon = \text{max}\left \{1,3 \right \}$ then what does it exactly mean in a numeric sense? If $x = 1$ and $y = 3$, then is $\epsilon = \text{max}\left \{1,3 \right \}$ the biggest number formed from $x$ and $y$?

2

There are 2 best solutions below

1
On BEST ANSWER

For real $a$ and $b$ (and in general for any $a$ and $b$ belonging to some order), $\max\{a, b\} = a$ if $a \geq b$; otherwise, $\max\{a, b\} = b$.

0
On

Yes, $\max(1,3)$ means the biggest number from both and $\min(1,3)$ means the smallest number.