Ordering Numbers
Ordering extends comparison to a whole set. Ascending order runs smallest to largest; descending order runs largest to smallest. The procedure is the comparison rule applied repeatedly: group by number of digits first (fewer digits means smaller), then within each group compare from the leftmost place rightwards until a difference shows. Take 321, 45, 3210, 456 in ascending order. The two-digit 45 is smallest; among the three-digit numbers 321 < 456 because 3 < 4 at the hundreds place; the four-digit 3210 is largest - giving 45 < 321 < 456 < 3210. Descending is the same logic reversed: for 505, 55, 550, 5005 the four-digit 5005 leads, the two-digit 55 trails, and between 505 and 550 the tens place decides (0 < 5) so 550 > 505, giving 5005 > 550 > 505 > 55. The misconception to watch is ordering by the leading digit alone - placing 35, 123, 87 as 35, 87, 123 by reading only 3, 8, 1 - when 123 is in fact the largest because it has the most digits.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Key Concepts — Quick Reference
Place value (base-10 columns and the two values of a digit)
| Ones | 1st place from right = 10^0 = 1 |
|---|---|
| Tens | 2nd place from right = 10^1 = 10 |
| Hundreds | 3rd place from right = 10^2 = 100 |
| Thousands | 4th place from right = 10^3 = 1000 |
| Face value | The digit itself, ignoring position. In 3582 the face value of 8 is 8. |
| Place value | Face value x value of its place. In 3582 the place value of 8 is 8 x 10 = 80. |
Roman numerals and parity rules
| Roman symbols | I = 1, V = 5, X = 10, L = 50, C = 100 |
|---|---|
| Add / subtract rule | Smaller after larger adds (VI = 6); smaller before larger subtracts (IV = 4, IX = 9, XL = 40, XC = 90) |
| Repetition rule | I, X, C repeat up to three times; V and L are never repeated and never subtracted |
| Even number | Ends in 0, 2, 4, 6 or 8; can be written as 2n |
| Odd number | Ends in 1, 3, 5, 7 or 9; can be written as 2n + 1 |