The min function returns the smallest value of a set of numbers.
The calculator is able to calculate online the minimum of a sequence. The sequence can be a sequence of numerical values or sequence of computable expressions.
The computer is able to determine the minimum of a sequence of numerical values, these values can be integers, decimals, real numbers, ... .
To obtain the minimum of a sequence of values as follows 1;3;7;9, enter : min(`[1;3;7;9]`) ,after calculation, the result 1 is given.
The computer is able to determine the minimum of a sequence of numeric expressions. For example, to calculate the minimum composed of a sequence of expressions like the following : 1, 1+2, `4/5`, `3/4+1`, enter min(`[1;1+2;4/5;3/4+1]`) ,after calculation, the result 0.8 is given.
min([s1;s2;...;sn]), s1,s2,...,sn are a series of numbers.
min(`[1;3;7;9]`) returns 1