# Least to Greatest Calculator

Free least to greatest calculator. Sort numbers from smallest to largest, find the range, minimum, maximum, and median of your data set.

## What this calculates

Sort a list of numbers from least to greatest (ascending order) or greatest to least (descending order). Also calculates the range, minimum, maximum, and median of your data.

## Inputs

- **Number of Values** — min 2, max 10 — How many numbers to sort (2-10).
- **Value 1** — Number 1.
- **Value 2** — Number 2.
- **Value 3** — Number 3.
- **Value 4** — Number 4.
- **Value 5** — Number 5.
- **Value 6** — Number 6.
- **Value 7** — Number 7.
- **Value 8** — Number 8.
- **Value 9** — Number 9.
- **Value 10** — Number 10.

## Outputs

- **Sorted (Least to Greatest)** — formatted as text — The numbers sorted in ascending order.
- **Sorted (Greatest to Least)** — formatted as text — The numbers sorted in descending order.
- **Minimum** — The smallest value.
- **Maximum** — The largest value.
- **Range** — The difference between the largest and smallest values.
- **Count** — How many numbers were sorted.
- **Median** — The middle value of the sorted list.

## Details

Sorting numbers from least to greatest is one of the most basic and useful operations in math and data analysis. It helps you spot patterns, find the middle value, and calculate the range.

**How to Sort Least to Greatest:**

1. Compare each number to the others
2. Place the smallest number first
3. Continue placing each next-smallest number
4. The result is your ascending-order list

**Why Sorting Matters:**

- **Finding the median:** You need sorted data to find the middle value
- **Calculating quartiles:** Q1 and Q3 depend on the sorted order
- **Spotting outliers:** Extreme values stand out at the ends of a sorted list
- **Understanding range:** Range = maximum - minimum, easily found from sorted data

**Example:** The numbers 47, 12, 85, 3 sorted from least to greatest become: 3, 12, 47, 85. The range is 85 - 3 = 82.

**Tip:** When working with negative numbers, remember that -10 is less than -2. The number line goes from left (small) to right (large).

## Frequently Asked Questions

**Q: What does least to greatest mean?**

A: Least to greatest means arranging numbers from the smallest value to the largest value (ascending order). For example, the numbers 5, 2, 8, 1 sorted from least to greatest would be 1, 2, 5, 8. This is also called ascending order or sorting in increasing order.

**Q: How do I sort negative numbers?**

A: Negative numbers go before positive numbers. On the number line, more negative means smaller. So -10 is less than -2, which is less than 0, which is less than 5. Example: sorting -3, 7, -8, 2 gives -8, -3, 2, 7.

**Q: What is the range of a set of numbers?**

A: The range is the difference between the largest and smallest values. It measures the total spread of the data. For the set {3, 12, 47, 85}, the range is 85 - 3 = 82. A larger range means more spread out data.

**Q: What is the median and why do I need sorted data to find it?**

A: The median is the middle value when numbers are arranged in order. For an odd count of numbers, it is the one in the center. For an even count, it is the average of the two middle numbers. You need sorted data because 'the middle' only makes sense when the values are in order.

---

Source: https://vastcalc.com/calculators/statistics/least-to-greatest
Category: Statistics
Last updated: 2026-04-08
