MathematicsFundamental Principle of CountingJEE Advanced 2012Moderate
Visualized Solution (Hindi)
Understanding the Constraints
- Digits allowed: 0,1
- Condition: No consecutive 0s (No '00')
- Constraint: First digit must be 1 (for an n-digit positive integer)
Defining bn and cn
- an: Total number of such n-digit integers
- bn: Number of such integers ending with 1
- cn: Number of such integers ending with 0
- Total relation: an=bn+cn
Deriving bn=an−1
- Case bn: Ends in 1
- The first n−1 digits must form a valid (n−1)-digit integer.
- Therefore, bn=an−1
Deriving cn=an−2
- Case cn: Ends in 0
- The (n−1)-th digit MUST be 1 to avoid '00'.
- The first n−2 digits must form a valid (n−2)-digit integer.
- Therefore, cn=bn−1=an−2
The Recurrence Relation
- Substitute bn and cn into the total sum:
- a_n = a_{n-1} + a_{n-2}
- This holds for n≥3.
Base Cases: a1 and a2
- For n=1: {1} ⟹a1=1
- For n=2: {11, 10} ⟹a2=2
Calculating a3 to a6
- a3=a2+a1=2+1=3
- a4=a3+a2=3+2=5
- a5=a4+a3=5+3=8
- a6=a5+a4=8+5=13
Finding b6
- We know bn=an−1
- Substitute n=6: b6=a5
- From our previous step, a5=8
- ∴b6=8
Verifying the Relation for a17
- The general recurrence is an=an−1+an−2
- For n=17: a17=a16+a15
- This matches the first option.
- Key Takeaway: The sequence an follows the Fibonacci recurrence starting from a1=1,a2=2.
00:00 / 00:00
Conceptually Similar Problems
MathematicsLinear PermutationsJEE Advanced 2009Easy
MathematicsGeometric Progression (G.P.)JEE Advanced 2006Moderate
MathematicsProperties of DeterminantsJEE Main 2009Easy
MathematicsProperties of Binomial CoefficientsJEE Main 2010Moderate
MathematicsProperties of Binomial CoefficientsJEE Advanced 2000Moderate
MathematicsSum of Special SeriesJEE Advanced 1999Moderate
MathematicsCombinations and SelectionJEE Advanced 1996Easy
MathematicsAlgebraic Operations on Complex NumbersJEE Advanced 1996Easy
MathematicsFundamental Principle of CountingJEE Advanced 1998Easy
MathematicsProperties of Binomial CoefficientsJEE Advanced 2005Moderate