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?
Is -9 or -2 the smaller number?
Can I order fractions and decimals together?
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.