Large Numbers Around Us | FIO

Question 18

Suppose you write down all the numbers 1,2,3,4,,9,10,11,1, 2, 3, 4, \dots, 9, 10, 11, \dots The tenth digit you write is '1' and the eleventh digit is '0', as part of the number 10.

(a) What would the 1000th digit be? At which number would it occur?

(b) What number would contain the millionth digit?

(c) When would you have written the digit '5' for the 5000th time?

Check your answer with HomiSolve it yourself, then let Homi check your steps and spot mistakes.
Solution
Understand the Question
  • As we write consecutive positive integers 1,2,3,4,1, 2, 3, 4, \dots, the total count of digits increases based on the number of digits in each number group:
    • 1-digit numbers (11 to 99): 9×1=99 \times 1 = 9 digits
    • 2-digit numbers (1010 to 9999): 90×2=18090 \times 2 = 180 digits
    • 3-digit numbers (100100 to 999999): 900×3=2700900 \times 3 = 2700 digits
    • nn-digit numbers: 9×10n1×n9 \times 10^{n-1} \times n digits
  • To find the position of any NthN^{\text{th}} digit, determine which range it falls into, calculate how many complete numbers are covered, and inspect the remainder.
  • For counting the frequency of a specific digit like '5' from 11 to 10k110^k - 1, each non-zero digit appears exactly k×10k1k \times 10^{k-1} times.

(a) What would the 1000th digit be? At which number would it occur?

Step 1 · Count Digits up to 2-Digit Numbers

Diagram 1

  • 1-digit numbers (11 to 99): 9×1=9 digits9 \times 1 = 9 \text{ digits}

  • 2-digit numbers (1010 to 9999): 90×2=180 digits90 \times 2 = 180 \text{ digits}

Total digits written up to 9999: 9+180=189 digits9 + 180 = 189 \text{ digits}

Step 2 · Find the 1000th Digit in 3-Digit Numbers

Digits remaining to reach 10001000: 1000189=8111000 - 189 = 811

Since each 3-digit number uses 33 digits, divide 811811 by 33: 811÷3=270 with a remainder of 1811 \div 3 = 270 \text{ with a remainder of } 1

This covers 270270 full 3-digit numbers starting from 100100: 100+(2701)=369100 + (270 - 1) = 369

The 1000th1000^{\text{th}} digit is the 1st1^{\text{st}} digit of the next number, 370370, which is '3'.

Answer

(a) The 1000th1000^{\text{th}} digit is '3', occurring in the number 370.

(b) What number would contain the millionth digit?

Step 1 · Count Digits up to 5-Digit Numbers

Calculate the total digits written up to 9999999999:

  • Up to 99: 99
  • Up to 9999: 9+180=1899 + 180 = 189
  • Up to 999999: 189+(900×3)=2889189 + (900 \times 3) = 2889
  • Up to 99999999: 2889+(9000×4)=388892889 + (9000 \times 4) = 38889
  • Up to 9999999999: 38889+(90000×5)=48888938889 + (90000 \times 5) = 488889

Step 2 · Find the Millionth Digit in 6-Digit Numbers

Digits remaining to reach 1,000,0001,000,000: 1000000488889=5111111000000 - 488889 = 511111

Divide by 66 (since each 6-digit number uses 66 digits): 511111÷6=85185 with a remainder of 1511111 \div 6 = 85185 \text{ with a remainder of } 1

This covers 8518585185 full 6-digit numbers starting from 100000100000: 100000+(851851)=185184100000 + (85185 - 1) = 185184

The millionth digit is the 1st1^{\text{st}} digit of the next number, which is 185185.

Answer

(b) The millionth digit is contained in the number 185185.

(c) When would you have written the digit '5' for the 5000th time?

Step 1 · Count Occurrences of '5' up to 9999

For numbers from 11 to 10k110^k - 1, the digit '5' appears k×10k1k \times 10^{k-1} times:

  • From 11 to 99 (k=1k=1): 1×100=11 \times 10^0 = 1
  • From 11 to 9999 (k=2k=2): 2×101=202 \times 10^1 = 20
  • From 11 to 999999 (k=3k=3): 3×102=3003 \times 10^2 = 300
  • From 11 to 99999999 (k=4k=4): 4×103=40004 \times 10^3 = 4000

Total occurrences of '5' up to 9999=40009999 = 4000.

Step 2 · Count Remaining Occurrences of '5' in 5-Digit Numbers

Remaining occurrences needed: 50004000=10005000 - 4000 = 1000

In each block of 10001000 numbers where the thousands digit is not 55 (such as 100001099910000\text{--}10999), the digit '5' appears 300300 times in the last 3 places:

  • 1000010000 to 1099910999: 300300 times     4000+300=4300\implies 4000 + 300 = 4300
  • 1100011000 to 1199911999: 300300 times     4300+300=4600\implies 4300 + 300 = 4600
  • 1200012000 to 1299912999: 300300 times     4600+300=4900\implies 4600 + 300 = 4900

Remaining '5's needed: 50004900=1005000 - 4900 = 100

In each block of 100100 numbers (130001309913000\text{--}13099), the digit '5' appears 2020 times:

  • 1300013000 to 1309913099: 2020 times     4920\implies 4920
  • 1310013100 to 1319913199: 2020 times     4940\implies 4940
  • 1320013200 to 1329913299: 2020 times     4960\implies 4960
  • 1330013300 to 1339913399: 2020 times     4980\implies 4980
  • 1340013400 to 1349913499: 2020 times     5000\implies 5000

Thus, the 5000th5000^{\text{th}} occurrence of '5' happens at the end of the range ending in 13499.

Answer

(c) The digit '5' is written for the 5000th5000^{\text{th}} time at the number 13499.

Common Mistakes
  • Off-by-One in Block Counting: Forgetting that the nthn^{\text{th}} number starting at 100100 is 100+(n1)100 + (n - 1), not 100+n100 + n.
  • Remainder Interpretation: A remainder of 11 means the digit belongs to the first position of the next number, not the last digit of the current number.
  • Digit Count vs Number Count: Conflating the total number of digits written with the value of the numbers themselves.

More questions in FIO

Q1

According to the 2011 Census, the population of the town of Chintamani was about 75,000. How much less than one lakh is 75,000?

Q2

The estimated population of Chintamani in the year 2024 is 1,06,000. How much more than one lakh is 1,06,000?

Q3

By how much did the population of Chintamani increase from 2011 to 2024?

Q4

For each number given below, write expressions for at least two different ways to obtain the number through button clicks. Think like Chitti and be creative.

(a) 8300

(b) 40629

(c) 56354

(d) 66666

(e) 367813

Q5

For the numbers in the previous exercise, find out how to get each number by making the smallest number of button clicks and write the expression.

Q6

Do you see any connection between each number and the corresponding smallest number of button clicks?

Q7

If you notice, the expressions for the least button clicks also give the Indian place value notation of the numbers. Think about why this is so.

Q8

Read the following numbers in Indian place value notation and write their number names in both the Indian and American systems:

(a) 4050678

(b) 48121620

(c) 20022002

(d) 246813579

(e) 345000543

(f) 1020304050

Q9

Write the following numbers in Indian place value notation:

(a) One crore one lakh one thousand ten

(b) One billion one million one thousand one

(c) Ten crore twenty lakh thirty thousand forty

(d) Nine billion eighty million seven hundred thousand six hundred

Q10

Compare and write '<<', '>>' or '==':

(a) 30 thousand ______ 3 lakhs

(b) 500 lakhs ______ 5 million

(c) 800 thousand ______ 8 million

(d) 640 crore ______ 60 billion

Q11

Find quick ways to calculate these products:

(a) 2×1768×502 \times 1768 \times 50

(b) 72×12572 \times 125 [Hint: 125=10008125 = \dfrac{1000}{8}]

(c) 125×40×8×25125 \times 40 \times 8 \times 25

Q12

Calculate these products quickly.

(a) 25×12=25 \times 12 = _______

(b) 25×240=25 \times 240 = _______

(c) 250×120=250 \times 120 = _______

(d) 2500×12=2500 \times 12 = _______

(e) _______ ×\times _______ =120000000= 120000000

Q13

Using all digits from 00 to 99 exactly once (the first digit cannot be 00) to create a 1010-digit number, write the —

(a) Largest multiple of 55

(b) Smallest even number

Q14

The number 10,30,285 in words is Ten lakhs thirty thousand two hundred eighty five, which has 42 letters. Give a 7-digit number name which has the maximum number of letters.

Q15

Write a 9-digit number where exchanging any two digits results in a bigger number. How many such numbers exist?

Q16

Strike out 10 digits from the number 12345123451234512345 so that the remaining number is as large as possible.

Q17

The words 'zero' and 'one' share letters 'e' and 'o'. The words 'one' and 'two' share a letter 'o', and the words 'two' and 'three' also share a letter 't'. How far do you have to count to find two consecutive numbers which do not share an English letter in common?

Q18

Suppose you write down all the numbers 1,2,3,4,,9,10,11,1, 2, 3, 4, \dots, 9, 10, 11, \dots The tenth digit you write is '1' and the eleventh digit is '0', as part of the number 10.

(a) What would the 1000th digit be? At which number would it occur?

(b) What number would contain the millionth digit?

(c) When would you have written the digit '5' for the 5000th time?

Q19

A calculator has only '+10,000' and '+100' buttons. Write an expression describing the number of button clicks to be made for the following numbers:

(a) 20,800

(b) 92,100

(c) 1,20,500

(d) 65,30,000

(e) 70,25,700

Q20

How many lakhs make a billion?

Q21

You are given two sets of number cards numbered from 11-99. Place a number card in each box below to get the

(a) largest possible sum

(b) smallest possible difference of the two resulting numbers.

Q22

You are given some number cards; 4000, 13000, 3000, 70000, 150000, 20, 5. Using the cards get as close as you can to the numbers below using any operation you want. Each card can be used only once for making a particular number.

(a) 1,10,000: Closest I could make is 4000×(20+5)+13000=1,13,0004000 \times (20 + 5) + 13000 = 1,13,000

(b) 2,00,000:

(c) 5,80,000:

(d) 12,45,000:

(e) 20,90,800:

Q23

Find out how many coins should be stacked to match the height of the Statue of Unity. Assume each coin is 1 mm thick.

Q24

Grey-headed albatrosses have a roughly 7-feet wide wingspan. They are known to migrate across several oceans. Albatrosses can cover about 900 – 1000 km in a day. One of the longest single trips recorded is about 12,000 km. How many days would such a trip take to cross the Pacific Ocean approximately?

Q25

A bar-tailed godwit holds the record for the longest recorded non-stop flight. It travelled 13,560 km from Alaska to Australia without stopping. Its journey started on 13 October 2022 and continued for about 11 days. Find out the approximate distance it covered every day. Find out the approximate distance it covered every hour.

Q26

Bald eagles are known to fly as high as 4500 m4500\text{ m}6000 m6000\text{ m} above the ground level. Mount Everest is about 8850 m8850\text{ m} high. Aeroplanes can fly as high as 10,000 m10{,}000\text{ m}12,800 m12{,}800\text{ m}. How many times bigger are these heights compared to Somu’s building?

← Back to Large Numbers Around Us