Skip to content
OneKitly

Find minimum and maximum

Paste a list of numbers and get the smallest, the largest, the range between them, and how many values there are. Handles negatives and decimals.

Minimum spanning tree calculatorThe cheapest way to connect every node of a weighted graph with no cycles — the classic problem behind laying cable, roads or pipes. List the edges as “A B weight” and Kruskal's algorithm finds the minimum spanning tree, its total weight, and draws it, highlighting the chosen edges.Sum calculatorAdd up a list of numbers and get the total, count and average.Sum of positive integers calculatorThe sum of all whole numbers from n₁ to n₂ in one step — Gauss's trick, n₂(n₂+1)/2 − (n₁−1)n₁/2, instead of adding them one by one. From 1 to 100 is the classic 5050; works for any range and any size.Euler's totient calculator φ(n)Compute Euler's totient φ(n) — the count of integers from 1 to n that are coprime to n (share no factor but 1). It factorises n into primes and applies φ(n) = n·∏(1−1/p) over its distinct prime factors, showing the factorization, the formula and the number of coprimes. φ underlies RSA, Euler's theorem and the order of the multiplicative group mod n.Gacha pity calculatorHow many pulls until the guaranteed 5★ in a gacha game like Genshin or Star Rail, accounting for the soft-pity ramp. Enter your current pity count and it works out the pulls left to soft pity, the hard-pity guarantee, and the average pulls you can expect before the next drop.First n prime numbersList the first n prime numbers — the building blocks of arithmetic that have no divisors but 1 and themselves. Enter how many you want (up to 10,000) and it returns the sequence, the nth prime itself and the sum of them all.List of prime numbersList every prime number up to a chosen limit, using the Sieve of Eratosthenes. Enter an upper bound (up to 100,000) and it returns all primes at or below it, how many there are and their sum — a quick reference for factoring and number theory.Sum of cubes calculatorAdd up cubes fast: the sum of the first n cubes (1³+2³+…+n³, which equals the square of the n-th triangular number), the cubes over a range n₁³…n₂³, or the cubes of your own list of numbers. Exact integer arithmetic, however large.

Need Minimum, Maximum, Range, Count? The Find minimum and maximum derives it from Numbers in one step. For instance, with Numbers = 15, -3, 42, 8.5, -17, 23, 0, 99 it returns Minimum = -17, Maximum = 99 and Range = 116.

How to use it

  1. Enter your values: Numbers.
  2. Read the result instantly: Minimum, Maximum, Range, Count.

Frequently asked questions

How does the Find minimum and maximum work?

It takes Numbers and derives Minimum, Maximum, Range and Count from them. The calculation is live as you type, so the result updates on every change.

Which values does the calculator ask for?

A single value: Numbers. Nothing else is required — no account, no file upload.

What does a typical calculation look like?

With Numbers = 15, -3, 42, 8.5, -17, 23, 0, 99, the calculator returns Minimum = -17, Maximum = 99 and Range = 116. Those figures come from running this exact tool, so you can reproduce them by entering the same values.

How much does the result change with different inputs?

It moves a lot. Using Numbers = 15, -3.15, 46.2, 9.77, -20.4, 28.75, 0, 133.65 instead, Minimum goes from -17 to -20.4 — which is why it is worth testing a few scenarios rather than trusting a single figure.

What does it give for smaller values?

Scaled down to Numbers = 15, -3, 42, 8.5, Minimum comes out at -3. The relationship is worth checking at both ends before you rely on a single result.

When would I actually use this?

Reading a number written another way: a Roman numeral on a monument, a hexadecimal colour, a binary byte, or a fraction that needs reducing.

What is the most common mistake?

Assuming a decimal fraction survives a change of base. A tenth is exact in decimal and infinitely repeating in binary, which is why 0.1 + 0.2 is not 0.3 in most programming languages.

Is there a tool for the next step?

Sum calculator is the closest one after this: Add up a list of numbers and get the total, count and average.

What else is worth having open alongside it?

Sum of positive integers calculator and Euler's totient calculator φ(n) — they come up in the same task often enough to be worth a second tab.

Where do the figures come from, and how current are they?

Base conversion and number-theory results are exact. Roman numerals follow the standard subtractive form used since the Middle Ages, which is not the only one the Romans themselves used.

Further reading

All guides