Report

Help us improve this tool

Find Minimum and Maximum

Find the minimum and maximum values in any number set with visual data distribution, sorted rankings, and statistical analysis.

O M T

What is the Minimum and Maximum of a Set of Numbers?

The minimum is the smallest value in a dataset, and the maximum is the largest value. Together they define the range of a dataset and give you an instant snapshot of the spread of your numbers. Finding the min and max is one of the most fundamental operations in statistics, data analysis, and everyday mathematics.

Whether you are analyzing test scores, financial data, sensor readings, or any collection of numbers, knowing the minimum and maximum values helps you understand the boundaries of your data. For example, if you have daily temperatures for a month, the minimum tells you the coldest day and the maximum tells you the hottest day.

How to Find the Minimum and Maximum

To find the minimum and maximum, simply sort the numbers in ascending order (from smallest to largest). The first number in the sorted list is the minimum and the last number is the maximum. If you are working with a small set of numbers, you can do this visually; for larger datasets, use a tool like this one.

Key Formulas Using Min and Max

Range

The range is the difference between the maximum and minimum values. It is the simplest measure of statistical dispersion:

$$\text{Range} = \text{Maximum} - \text{Minimum}$$

For example, if the maximum is $100$ and the minimum is $10$, the range is $90$. A larger range indicates greater variability in the data. You can also use our dedicated Range Calculator for this calculation.

Min-Max Normalization

Min-max normalization (also called feature scaling) rescales a dataset to a fixed range, usually $[0, 1]$. Each value $X$ is transformed using:

$$X_{\text{normalized}} = \frac{X - \text{Min}}{\text{Max} - \text{Min}}$$

This formula is widely used in machine learning and data preprocessing to ensure that different features contribute equally to a model. After normalization, every value falls between $0$ and $1$, where the original minimum maps to $0$ and the original maximum maps to $1$.

How to Use This Tool

  1. Enter your numbers in the text area. You can separate them by commas, spaces, or newlines.
  2. Choose decimal precision from 2 to 15 decimal places using the dropdown.
  3. View results instantly — the tool computes the minimum, maximum, count, sum, mean, median, and range in real time.
  4. Inspect the sorted list to see all your numbers arranged from smallest to largest.

Related Tools

If you need deeper statistical analysis, try our Sort Numbers tool, Average Calculator, or Median Calculator. For more advanced measures of spread, check the Standard Deviation Calculator.

Frequently Asked Questions

What is the difference between min/max and range?

The minimum and maximum are individual values — the smallest and largest numbers in your dataset. The range is the difference between them ($\text{Max} - \text{Min}$). While min and max tell you the endpoints of your data, the range tells you how spread out the data is.

Can I find the minimum and maximum of negative numbers?

Yes. When working with negative numbers, the minimum is the most negative (the lowest value), and the maximum is the least negative (closest to zero). For example, in the set $-15, -3, -8$, the minimum is $-15$ and the maximum is $-3$.

What is min-max normalization used for?

Min-max normalization is commonly used in machine learning and data science to scale features to a uniform range (typically $[0, 1]$). This prevents features with larger numeric ranges from dominating those with smaller ranges during model training. It is essential for algorithms like k-nearest neighbors, neural networks, and gradient descent.

What separators does this tool support for input numbers?

This tool supports commas, spaces, and newlines as separators. You can mix them freely. For example, all of these are valid inputs: 1,2,3, 1 2 3, or numbers on separate lines.

How is the median calculated when there is an even number of values?

When the dataset has an even number of values, the median is the average of the two middle numbers after sorting. For example, in $[1, 3, 5, 7]$, the two middle numbers are $3$ and $5$, so the median is $(3 + 5) / 2 = 4$. For an odd count, the median is simply the middle value.

Can I export or copy the results?

Yes. You can use the copy button above the input area to copy your number list to the clipboard. The results on the right side update in real time and can be selected and copied manually. For more advanced data handling, try our Sort Numbers tool.