Order from Least to Greatest Calculator

Paste any list of numbers and sort them from least to greatest (ascending order). Handles decimals, negatives, and fractions, with the descending order and dataset summary shown too.

Separate values with commas, spaces, or new lines. Fractions like 3/4 and mixed numbers like 1 1/2 are accepted.

Quick Facts

Method
Ascending numeric sort (least → greatest)
Every value is compared by its true numeric value, so -9 correctly sorts before -2, and 0.5 before 0.75.

Your Results

Ordered
Least to greatest
-
Ascending order
Greatest to least
-
Descending order
Count
-
How many values
Min / Max
-
Smallest and largest

Ready

Enter your numbers and press Order Numbers.

Ordering numbers from least to greatest

To order a list of numbers from least to greatest means to arrange them in ascending order: the smallest value first, the largest value last, with every value in between no larger than the one that follows it. This calculator reads whatever you type — whole numbers, decimals, negatives, and fractions — compares each by its true numeric value, and returns the sorted list. It also shows the reverse (greatest to least), how many values you entered, and the minimum and maximum.

How the comparison actually works

Every number sits at a single point on the number line. "Least" means "furthest to the left," and "greatest" means "furthest to the right." Sorting is just repeatedly asking, "which of these two is further left?" A few rules make this reliable:

  • Negatives come before zero, which comes before positives. Any negative number is less than any positive number.
  • Among negatives, bigger digits mean smaller values. -9 is less than -2, because -9 is further from zero on the left side. This is the step people most often get wrong.
  • For decimals, compare place by place from the left. 0.5 is less than 0.75 because 0.50 and 0.75 share the tenths place comparison at 5 versus 7. Watch out for trailing digits: 0.5 equals 0.50, and 0.5 is greater than 0.45.
  • For fractions, use a common denominator or convert to decimals. 3/4 = 0.75 and 2/3 ≈ 0.667, so 2/3 is less than 3/4.

Worked example

Take the list 8, 3.5, -2, 3/4, 10, -5, 0. Convert the fraction: 3/4 = 0.75. Place each value on the number line and read left to right: the most negative is -5, then -2, then 0, then 0.75, then 3.5, then 8, then 10. So the ascending order is -5, -2, 0, 0.75, 3.5, 8, 10, and the descending order is the same list reversed: 10, 8, 3.5, 0.75, 0, -2, -5.

Why ordering matters

Sorting from least to greatest is the first step behind several core statistics. The median is the middle value of an ordered list. Quartiles and percentiles are read from ordered data. The range is simply the maximum minus the minimum, both of which are the endpoints of the sorted list. Ordering also makes duplicates, gaps, and outliers obvious at a glance.

Frequently Asked Questions

How do you order numbers from least to greatest?
Compare the numbers by value and arrange them so each is less than or equal to the next. Negatives come first (the more negative, the smaller), then zero, then positives. For decimals compare digit by digit from the left, and for fractions convert to a common denominator or to decimals before comparing. This tool does all of that automatically.
Is -9 or -2 the smaller number?
-9 is smaller. On the number line -9 sits further to the left than -2, so it is less. Among negative numbers, the one with the larger absolute value (the bigger digit) is actually the smaller value. Correct ascending order for -9, -2, 5 is: -9, -2, 5.
Can I order fractions and decimals together?
Yes. Enter a mix like 1/2, 0.7, 3/4, 0.25 and the calculator converts each to its decimal value before comparing (1/2 = 0.5, 3/4 = 0.75), giving 0.25, 0.5, 0.7, 0.75. Plain fractions such as 3/4 and mixed numbers such as 1 1/2 are both accepted.
What is the difference between ascending and descending order?
Ascending (least to greatest) starts with the smallest value; descending (greatest to least) starts with the largest. They are exact reverses of each other. This calculator shows both so you do not have to re-sort.