min of a set of number

Calculus in processing ... please wait
The min function returns the smallest value of a set of numbers.
min(`[1;3;7;9]`) returns 1

Min of a set of number

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.

Minimum of a sequence of numeric values

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.

Minimum of a sequence of numeric expressions

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.

Syntax :

min([s1;s2;...;sn]), s1,s2,...,sn are a series of numbers.


Examples :

min(`[1;3;7;9]`) returns 1

See also
List of related calculators :