Number Play | FIO

Question 23

Angaan wants to climb an 8-step staircase. His playful rule is that he can take either 1 step or 2 steps at a time. For example, one of his paths is 1, 2, 2, 1, 2. In how many different ways can he reach the top?

Check your answer with HomiSolve it yourself, then let Homi check your steps and spot mistakes.
Solution
Understand the Question
  • Let W(n)W(n) denote the number of different ways to climb nn steps taking either 11 step or 22 steps at a time.
  • To reach step nn, Angaan must make his final move from either:
    • Step (n1)(n-1) by taking 11 step, or
    • Step (n2)(n-2) by taking 22 steps.
  • Therefore, the total number of ways satisfies the recurrence relation: W(n)=W(n1)+W(n2)W(n) = W(n-1) + W(n-2)
  • By establishing the base cases for 11 and 22 steps, we can compute the total number of ways to reach the 8th8^{\text{th}} step step-by-step.

Step 1 · Establish Base Cases and Recurrence Relation

Let W(n)W(n) be the number of ways to climb nn steps.

  • 1 step: Path is (1)    W(1)=1(1) \implies W(1) = 1
  • 2 steps: Paths are (1,1)(1, 1) and (2)    W(2)=2(2) \implies W(2) = 2
  • 3 steps: Paths are (1,1,1)(1, 1, 1), (1,2)(1, 2), and (2,1)    W(3)=3(2, 1) \implies W(3) = 3

Notice that:

W(3)=W(1)+W(2)=1+2=3\begin{aligned} W(3) &= W(1) + W(2) \\ &= 1 + 2 \\ &= 3 \end{aligned}

To reach step nn, Angaan can come from step (n1)(n-1) via a 11-step move or from step (n2)(n-2) via a 22-step move.

Thus, the general recurrence relation is: W(n)=W(n1)+W(n2)W(n) = W(n-1) + W(n-2)

Step 2 · Calculate the Number of Ways for 8 Steps

Diagram 1

Using W(1)=1W(1) = 1 and W(2)=2W(2) = 2, apply W(n)=W(n1)+W(n2)W(n) = W(n-1) + W(n-2):

W(3)=W(2)+W(1)=2+1=3W(4)=W(3)+W(2)=3+2=5W(5)=W(4)+W(3)=5+3=8W(6)=W(5)+W(4)=8+5=13W(7)=W(6)+W(5)=13+8=21W(8)=W(7)+W(6)=21+13=34\begin{aligned} W(3) &= W(2) + W(1) = 2 + 1 = 3 \\[0.5em] W(4) &= W(3) + W(2) = 3 + 2 = 5 \\[0.5em] W(5) &= W(4) + W(3) = 5 + 3 = 8 \\[0.5em] W(6) &= W(5) + W(4) = 8 + 5 = 13 \\[0.5em] W(7) &= W(6) + W(5) = 13 + 8 = 21 \\[0.5em] W(8) &= W(7) + W(6) = 21 + 13 = 34 \end{aligned}
Answer

34 ways34\text{ ways}

Common Mistakes
  • Treating Order as Irrelevant: Paths like (1,2)(1, 2) and (2,1)(2, 1) represent distinct step sequences; treating them as identical leads to undercounting.
  • Manual Counting for Large Steps: Attempting to write out all 34 combinations directly without using the recurrence relation W(n)=W(n1)+W(n2)W(n) = W(n-1) + W(n-2) often causes missed or duplicate paths.

More questions in FIO

Q1

Arrange the stick figure cutouts given at the end of the book or draw a height arrangement such that the sequence reads:

(a) 0, 1, 1, 2, 4, 1, 5

(b) 0, 0, 0, 0, 0, 0, 0

(c) 0, 1, 2, 3, 4, 5, 6

(d) 0, 1, 0, 1, 0, 1, 0

(e) 0, 1, 1, 1, 1, 1, 1

(f) 0, 0, 0, 3, 3, 3, 3

Q2

For each of the statements given below, think and identify if it is Always True, Only Sometimes True, or Never True. Share your reasoning.

(a) If a person says '0', then they are the tallest in the group.

(b) If a person is the tallest, then their number is '0'.

(c) The first person's number is '0'.

(d) If a person is not first or last in line (i.e., if they are standing somewhere in between), then they cannot say '0'.

(e) The person who calls out the largest number is the shortest.

(f) What is the largest number possible in a group of 8 people?

Q3

Using your understanding of the pictorial representation of odd and even numbers, find out the parity of the following sums:

(a) Sum of 2 even numbers and 2 odd numbers (e.g., even + even + odd + odd)

(b) Sum of 2 odd numbers and 3 even numbers

(c) Sum of 5 even numbers

(d) Sum of 8 odd numbers

Q4

Lakpa has an odd number of ₹1 coins, an odd number of ₹5 coins and an even number of ₹10 coins in his piggy bank. He calculated the total and got ₹205. Did he make a mistake? If he did, explain why. If he didn't, how many coins of each type could he have?

Q5

We know that:

(a) even+even=even\text{even} + \text{even} = \text{even}

(b) odd+odd=even\text{odd} + \text{odd} = \text{even}

(c) even+odd=odd\text{even} + \text{odd} = \text{odd}

Similarly, find out the parity for the scenarios below:

(d) eveneven=_________\text{even} - \text{even} = \text{\_\_\_\_\_\_\_\_\_}

(e) oddodd=_________\text{odd} - \text{odd} = \text{\_\_\_\_\_\_\_\_\_}

(f) evenodd=_________\text{even} - \text{odd} = \text{\_\_\_\_\_\_\_\_\_}

(g) oddeven=_________\text{odd} - \text{even} = \text{\_\_\_\_\_\_\_\_\_}

Q6

How many different magic squares can be made using the numbers 191 - 9?

Q7

Create a magic square using the numbers 2102 - 10. What strategy would you use for this? Compare it with the magic squares made using 191 - 9.

Q8

Take a magic square, and

(a) increase each number by 1

(b) double each number

In each case, is the resulting grid also a magic square? How do the magic sums change in each case?

Q9

What other operations can be performed on a magic square to yield another magic square?

Q10

Discuss ways of creating a magic square using any set of 9 consecutive numbers (like 2 – 10, 3 – 11, 9 – 17, etc.).

Q11

Using this generalised form, find a magic square if the centre number is 25.

Q12

What is the expression obtained by adding the 3 terms of any row, column or diagonal?

Q13

Write the result obtained by— (a) adding 1 to every term in the generalised form. (b) doubling every term in the generalised form

Q14

Create a magic square whose magic sum is 60.

Q15

Is it possible to get a magic square by filling nine non-consecutive numbers?

Q16

A light bulb is ON. Dorjee toggles its switch 77 times. Will the bulb be on or off? Why?

Q17

Liswini has a large old encyclopaedia. When she opened it, several loose pages fell out of it. She counted 50 sheets in total, each printed on both sides. Can the sum of the page numbers of the loose sheets be 6000? Why or why not?

Q18

Here is a 2×32 \times 3 grid. For each row and column, the parity of the sum is written in the circle; 'e' for even and 'o' for odd. Fill the 6 boxes with 3 odd numbers ('o') and 3 even numbers ('e') to satisfy the parity of the row and column sums.

Q19

Make a 3×33 \times 3 magic square with 00 as the magic sum. All numbers can not be zero. Use negative numbers, as needed.

Q20

Fill in the following blanks with 'odd' or 'even':

(a) Sum of an odd number of even numbers is ______

(b) Sum of an even number of odd numbers is ______

(c) Sum of an even number of even numbers is ______

(d) Sum of an odd number of odd numbers is ______

Q21

What is the parity of the sum of the numbers from 11 to 100100?

Q22

Two consecutive numbers in the Virahāṅka sequence are 987 and 1597. What are the next 2 numbers in the sequence? What are the previous 2 numbers in the sequence?

Q23

Angaan wants to climb an 8-step staircase. His playful rule is that he can take either 1 step or 2 steps at a time. For example, one of his paths is 1, 2, 2, 1, 2. In how many different ways can he reach the top?

Q24

What is the parity of the 20th term of the Virahāṅka sequence?

Q25

Identify the statements that are true.

(a) The expression 4m14m - 1 always gives odd numbers. (b) All even numbers can be expressed as 6j46j - 4. (c) Both expressions 2p+12p + 1 and 2q12q - 1 describe all odd numbers. (d) The expression 2f+32f + 3 gives both even and odd numbers.

Q26

Solve this cryptarithm:

UT+TATAT\begin{array}{rcc} & \text{U} & \text{T} \\ + & \text{T} & \text{A} \\ \hline \text{T} & \text{A} & \text{T} \end{array}
← Back to Number Play