Functions – What Does max[] Mean?

functionsnotation

What does D = max[0; M(x)] mean?

M(x) is a function.

Best Answer

Taking the maximal number amongst the parameters.

$\max\{x_1,x_2\} = \cases{x_1, \text{if }x_1 > x_2\\x_2, \text{otherwise}}$

You can define like that the maximum of any finitely many elements.

When the parameters are an infinite set of values, then it is implied that one of them is maximal (namely that there is a greatest one, unlike the set $\{-\frac{1}{n} | n\in\mathbb{N}\}$ where there is no greatest element)

Related Question