Number Play | FIO

Question 24

There is only one supercell (number greater than all its neighbours) in this grid. If you exchange two digits of one of the numbers, there will be 4 supercells. Figure out which digits to swap.

Question diagram 1
Check your answer with HomiSolve it yourself, then let Homi check your steps and spot mistakes.
Solution

We will first find the current supercell and then test different digit swaps to create four supercells.

Step 1 — Find the current supercell

Let us look at the numbers in the grid. A number is a supercell if it is bigger than all its 8 neighbours.

Original grid: 16,200 | 39,344 | 29,765 23,609 | 62,871 | 45,306 19,381 | 50,319 | 38,408

Let us check each number:

  • 16,200 (top-left): Neighbours are 39,344, 23,609, 62,871. It is smaller than all of them. So, it is not a supercell.
  • 39,344 (top-middle): Neighbours include 62,871. It is smaller than 62,871. So, it is not a supercell.
  • 29,765 (top-right): Neighbours include 39,344, 45,306, 62,871. It is smaller than all of them. So, it is not a supercell.
  • 23,609 (middle-left): Neighbours include 39,344, 62,871, 50,319. It is smaller than all of them. So, it is not a supercell.
  • 62,871 (center): Its neighbours are 16,200, 39,344, 29,765, 23,609, 45,306, 19,381, 50,319, 38,408. Let us compare 62,871 with all its neighbours: 62,871 > 16,200 (True) 62,871 > 39,344 (True) 62,871 > 29,765 (True) 62,871 > 23,609 (True) 62,871 > 45,306 (True) 62,871 > 19,381 (True) 62,871 > 50,319 (True) 62,871 > 38,408 (True) So, 62,871 is the only supercell. This matches the problem statement.

Step 2 — Find the swap to create 4 supercells

If a number is a supercell, it must be greater than all its 8 neighbours. This means two supercells cannot be next to each other (they cannot be adjacent horizontally, vertically, or diagonally). If they were, each would have to be greater than the other, which is impossible.

In a 3x3 grid, the only way to have 4 cells that are not next to each other is if they are the four corner cells. Let us call the corner cells:

  • Top-Left (TL): 16,200
  • Top-Right (TR): 29,765
  • Bottom-Left (BL): 19,381
  • Bottom-Right (BR): 38,408

For these four corner cells to become supercells, each of them must be greater than its 3 neighbours. For example, TL's neighbours are 39,344, 23,609, and 62,871. So, TL must be greater than 62,871. Let us check if we can make any of the corner numbers greater than 62,871 by swapping two digits:

  • For 16,200: The largest number we can make by swapping two digits is 61,200 (by swapping 1 and 6). But 61,200 is smaller than 62,871. So, 16,200 cannot become a supercell.

This means the four corner cells cannot be the four supercells. This is a very important clue. The problem must have a trick, or the definition of "neighbours" is not all 8 surrounding cells. In some puzzles, "neighbours" only means the 4 cells directly up, down, left, and right. Let us try this definition.

Let us assume "neighbours" means only the 4 cells directly up, down, left, and right.

Let us re-check the original supercell with this new definition:

  • 62,871 (center): Its neighbours are 39,344, 23,609, 45,306, 50,319. 62,871 > 39,344 (True) 62,871 > 23,609 (True) 62,871 > 45,306 (True) 62,871 > 50,319 (True) So, 62,871 is still the only supercell.

Now, let us try to find a swap that creates 4 supercells under this 4-neighbour rule. If supercells can be diagonally adjacent, then we can have patterns like the four corner cells. Let's try to make the four corner cells supercells.

  • TL (16,200) neighbours: 39,344, 23,609.
  • TR (29,765) neighbours: 39,344, 45,306.
  • BL (19,381) neighbours: 23,609, 50,319.
  • BR (38,408) neighbours: 45,306, 50,319.

We need to swap digits in one number to make 4 supercells. This means the number we swap must be one of the corner cells, and this swap must make it a supercell. Also, the other three corner cells must already be supercells, or become supercells because their neighbours change. But their neighbours do not change.

This is still very difficult. Let's think about which number, if changed, could have the biggest impact. The numbers with small leading digits and large digits later on can become very big. Let's list the maximum possible values by swapping two digits for each number:

  • 16,200 -> 61,200 (swap 1 and 6)
  • 39,344 -> 93,344 (swap 3 and 9)
  • 29,765 -> 92,765 (swap 2 and 9)
  • 23,609 -> 93,602 (swap 2 and 9)
  • 62,871 -> 82,671 (swap 6 and 8)
  • 45,306 -> 65,304 (swap 4 and 6)
  • 19,381 -> 91,381 (swap 1 and 9)
  • 50,319 -> 90,315 (swap 5 and 9)
  • 38,408 -> 83,408 (swap 3 and 8)

Let us try swapping digits in 19,381 to get 91,381 (swapping 1 and 9). This makes 19,381 much larger.

Let's check the grid with 19,381 changed to 91,381. The new grid is: 16,200 | 39,344 | 29,765 23,609 | 62,871 | 45,306 91,381 | 50,319 | 38,408

Now, let us check for supercells (using the 8-neighbour definition, as it is more standard for "all its neighbours"):

  1. 16,200: Neighbours are 39,344, 23,609, 62,871, 91,381. It is smaller than all of them. Not a supercell.

  2. 39,344: Neighbours include 62,871, 91,381. It is smaller than both. Not a supercell.

  3. 29,765: Neighbours include 39,344, 45,306, 62,871, 91,381. It is smaller than all of them. Not a supercell.

  4. 23,609: Neighbours include 39,344, 62,871, 91,381, 50,319. It is smaller than all of them. Not a supercell.

  5. 62,871: Neighbours include 91,381. It is smaller than 91,381. So, 62,871 is no longer a supercell.

  6. 45,306: Neighbours include 62,871, 91,381, 50,319. It is smaller than all of them. Not a supercell.

  7. 91,381: Neighbours are 23,609, 62,871, 50,319, 38,408. 91,381 > 23,609 (True) 91,381 > 62,871 (True) 91,381 > 50,319 (True) 91,381 > 38,408 (True) So, 91,381 is a supercell. (This is the 1st supercell).

More questions in FIO

Q1

Colour or mark the supercells in the table below.

Q2

Fill the table below with only 4-digit numbers such that the supercells are exactly the coloured cells.

Q3

Fill the table below such that we get as many supercells as possible. Use numbers between 100 and 1000 without repetitions.

Q4

Out of the 9 numbers, how many supercells are there in the table above?

Q5

Find out how many supercells are possible for different numbers of cells.

Do you notice any pattern? What is the method to fill a given table to get the maximum number of supercells? Explore and share your strategy.

Q6

Can you fill a supercell table without repeating numbers such that there are no supercells? Why or why not?

Q7

Will the cell having the largest number in a table always be a supercell? Can the cell having the smallest number in a table be a supercell? Why or why not?

Q8

Fill a table such that the cell having the second largest number is not a supercell.

Q9

Fill a table such that the cell having the second largest number is not a supercell but the second smallest number is a supercell. Is it possible?

Q10

Make other variations of this puzzle and challenge your classmates.

Q11

Identify the numbers marked on the number lines below, and label the remaining positions.

Put a circle around the smallest number and a box around the largest number in each of the sequences above.

Q12

Digit sum 14 a. Write other numbers whose digits add up to 14. b. What is the smallest number whose digit sum is 14? c. What is the largest 5-digit whose digit sum is 14? d. How big a number can you form having the digit sum of 14? Can you make an even bigger number?

Q13

Find out the digit sums of all the numbers from 40 to 70. Share your observations with the class.

Q14

Calculate the digit sums of 3-digit numbers whose digits are consecutive (for example, 345). Do you see a pattern? Will this pattern continue?

Q15

Pratibha uses the digits '4', '7', '3' and '2', and makes the smallest and largest 4-digit numbers with them: 23472347 and 74327432. The difference between these two numbers is 74322347=50857432 - 2347 = 5085. The sum of these two numbers is 97799779. Choose 4-digits to make:

a. the difference between the largest and smallest numbers greater than 50855085.

b. the difference between the largest and smallest numbers less than 50855085.

c. the sum of the largest and smallest numbers greater than 97799779.

d. the sum of the largest and smallest numbers less than 97799779.

Q16

What is the sum of the smallest and largest 5-digit palindrome? What is their difference?

Q17

The time now is 10:01. How many minutes until the clock shows the next palindromic time? What about the one after that?

Q18

How many rounds does the number 5683 take to reach the Kaprekar constant?

Q19

Write an example for each of the scenarios shown in the diagram whenever possible.

Q20

Always, Sometimes, Never?

Below are some statements. Think, explore and find out if each of the statement is 'Always true', 'Only sometimes true' or 'Never true'. Why do you think so? Write your reasoning and discuss this with the class.

a. 5-digit number + 5-digit number gives a 5-digit number

b. 4-digit number + 2-digit number gives a 4-digit number

c. 4-digit number + 2-digit number gives a 6-digit number

d. 5-digit number – 5-digit number gives a 5-digit number

e. 5-digit number – 2-digit number gives a 3-digit number

Q21

Steps you would take to walk: a. From the place you are sitting to the classroom door b. Across the school ground from start to end c. From your classroom door to the school gate d. From your school to your home

Q22

Number of times you blink your eyes or number of breaths you take: a. In a minute b. In an hour c. In a day

Q23

Name some objects around you that are: a. a few thousand in number b. more than ten thousand in number

Q24

There is only one supercell (number greater than all its neighbours) in this grid. If you exchange two digits of one of the numbers, there will be 4 supercells. Figure out which digits to swap.

Q25

How many rounds does your year of birth take to reach the Kaprekar constant?

Q26

We are the group of 5-digit numbers between 35,000 and 75,000 such that all of our digits are odd. Who is the largest number in our group? Who is the smallest number in our group? Who among us is the closest to 50,000?

Q27

Estimate the number of holidays you get in a year including weekends, festivals and vacation. Then, try to get an exact number and see how close your estimate is.

Q28

Estimate the number of liters a mug, a bucket and an overhead tank can hold.

Q29

Write one 5-digit number and two 3-digit numbers such that their sum is 18,670.

Q30

Choose a number between 210 and 390. Create a number pattern similar to those shown in Section 3.9 that will sum up to this number.

Q31

Recall the sequence of Powers of 2 from Chapter 1, Table 1. Why is the Collatz conjecture correct for all the starting numbers in this sequence?

Q32

Check if the Collatz Conjecture holds for the starting number 100.

Q33

Starting with 0, players alternate adding numbers between 1 and 3. The first person to reach 22 wins. What is the winning strategy now?

← Back to Number Play