Comparing and ordering large numbers
Is crore bigger than million? Is greater than ? These look intimidating until you know the simple rule.
Idea
When comparing two whole numbers, follow this short routine:
- Count the digits. The one with more digits is larger. (E.g., crore has digits, million has digits, so crore wins.)
- If they have the same number of digits, compare from the left. Look at the leftmost digit; if equal, look at the next column, and so on until they differ.
- The first column where they differ decides the winner. The larger digit means the larger number.
To order several numbers (smallest to largest or vice versa), compare them pairwise using the same rule. A neat way is to first sort by digit count, then within each group sort by leftmost difference.
When numbers are written with commas (Indian or international), comparing is even easier because the commas line up the columns. Always rewrite numbers in the same system before comparing , never compare directly to until you notice they are the same number.
A common student mistake: confusing lakh with million. They are not equal , lakh is (one million), while million is (one crore). Always convert mentally to powers of .
Worked examples
Example 1. Which is greater, or ?
The first has digits; the second has digits. So .
Example 2. Arrange in increasing order: lakh, , million, crore.
Convert each to a numeral: lakh ; ; million ; crore .
By digit count: ( digits), ( digits), ( digits), ( digits). So the increasing order is
Example 3. Compare and .
Both have digits. Compare left to right: , , , , wait, the next column gives vs in the hundreds place. So .
Example 4. A state's budget is lakh crore. Another's is billion. Which is larger?
lakh crore . And billion . So , the first is larger (by a factor of about ).
Try it yourself
- Which is greater, or ?
- Arrange in decreasing order: crore, lakh, million, billion.
- Put or : .
- Order from smallest to largest: lakh, , million, .
- How many lakhs are equal to crore?
- A library has books; a bigger one has million. Which has more?
- Is greater or less than ?
- Write the smallest and largest -digit number using the digits exactly once.
Activity
Take any newspaper. Find five large numbers in it and write each on a slip of paper. Without looking at the original story, shuffle the slips and arrange them in increasing order. Then check by re-reading the stories.