Question icon
Grade 11Algebra

FindNo. Of 7 digit natural numbers in which both2&3 are presentas if no two 2`s are consecutive in any number

Profile image of Siddhesh pingle
8 Years agoGrade 11
Answers icon

1 Answer

Profile image of Arun
8 Years ago

I’ll presume you mean 7-digit natural numbers with only 2s and 3s, but with no 2s adjacent to each other.

For example, 2323232 would be fine, but 3223332 would not be.

One way to do this is with a recurrence relation.

Let A(n) = the number of n-digit natural numbers with only 2s and 3s, but with no 2s adjacent to each other.

Consider the last digit. Either it’s a 2 or a 3. If it’s a 3, then the first n-1 digits can be any valid number, because any valid number followed by a 3 is valid. By definition, there are A(n-1) of these.

But the last digit could also be a 2. In this case, the n-1 digit could not be a 2, otherwise you’d have two 2s together. So the n-1 digit must be a 3. Now, the first n-2 digits can be any valid number. By definition, there are A(n-2) of these.

So this gives us the recurrence relation A(n) = A(n-1) + A(n-2). We’ll need two boundary conditions, since this is a 2nd order recurrence relation.

A(1) = 2, because either 2 or 3 is valid. A(2) = 3 because 23, 32, and 33 are valid 2-digit numbers.

Now we can use these to compute A(7), which is what we want. So:

A(3) = A(2) + A(1) = 3 + 2 = 5

A(4) = A(3) + A(2) = 5 + 3 = 8

A(5) = A(4) + A(3) = 8 + 5 = 13

A(6) = A(5) + A(4) = 13 + 8 = 21 and finally

A(7) = A(6) + A(5) = 21 + 13 = 34

And that’s our answer.