Maths Olympiad Prep

Library / /330 of 520

Number theory Difficulty 7.1 National olympiad, round 2 Prove it

We examine the following two sequences: The Fibonacci sequence: F0=0,F1=1,Fn=Fn1+Fn2F_{0}= 0, F_{1}= 1, F_{n}= F_{n-1}+F_{n-2 } for n2n \geq 2; The Lucas sequence: L0=2,L1=1,Ln=Ln1+Ln2L_{0}= 2, L_{1}= 1, L_{n}= L_{n-1}+L_{n-2} for n2n \geq 2. It is known that for all n0n \geq 0
Fn=αnβn5,Ln=αn+βn,F_{n}=\frac{\alpha^{n}-\beta^{n}}{\sqrt{5}},L_{n}=\alpha^{n}+\beta^{n},
where α=1+52,β=152\alpha=\frac{1+\sqrt{5}}{2},\beta=\frac{1-\sqrt{5}}{2}. These formulae can be used without proof.

Prove that 1+L2j0(mod2j+1)1+L_{2^{j}}\equiv 0 \pmod{2^{j+1}} for j0j \geq 0.

Solution

1. Base Case Verification:
We start by verifying the base case for j=0 j = 0 .
L20=L1=1 L_{2^0} = L_1 = 1
1+L20=1+1=20(mod20+1)=2 1 + L_{2^0} = 1 + 1 = 2 \equiv 0 \pmod{2^{0+1}} = 2
Thus, the base case holds.

2. Inductive Hypothesis:
Assume that the statement is true for some j0 j \geq 0 , i.e.,
1+L2j0(mod2j+1) 1 + L_{2^j} \equiv 0 \pmod{2^{j+1}}
This means there exists an integer m m such that:
L2j=2j+1m1 L_{2^j} = 2^{j+1}m - 1

3. Inductive Step:
We need to show that the statement holds for j+1 j+1 , i.e.,
1+L2j+10(mod2j+2) 1 + L_{2^{j+1}} \equiv 0 \pmod{2^{j+2}}
Using the given identity:
L2k+1+1=L2k21 L_{2^{k+1}} + 1 = L_{2^k}^2 - 1
Set k=j k = j :
L2j+1+1=L2j21 L_{2^{j+1}} + 1 = L_{2^j}^2 - 1
Substitute the inductive hypothesis L2j=2j+1m1 L_{2^j} = 2^{j+1}m - 1 :
L2j+1+1=(2j+1m1)21 L_{2^{j+1}} + 1 = (2^{j+1}m - 1)^2 - 1
Expand the square:
(2j+1m1)2=22j+2m222j+1m+1=22j+2m22j+2m+1 (2^{j+1}m - 1)^2 = 2^{2j+2}m^2 - 2 \cdot 2^{j+1}m + 1 = 2^{2j+2}m^2 - 2^{j+2}m + 1
Therefore:
L2j+1+1=22j+2m22j+2m+11=22j+2m22j+2m L_{2^{j+1}} + 1 = 2^{2j+2}m^2 - 2^{j+2}m + 1 - 1 = 2^{2j+2}m^2 - 2^{j+2}m
Factor out 2j+2 2^{j+2} :
L2j+1+1=2j+2(2jm2m) L_{2^{j+1}} + 1 = 2^{j+2}(2^{j}m^2 - m)
Since 2j+2 2^{j+2} is a factor, we have:
L2j+1+10(mod2j+2) L_{2^{j+1}} + 1 \equiv 0 \pmod{2^{j+2}}
This completes the inductive step.

By mathematical induction, we have shown that 1+L2j0(mod2j+1) 1 + L_{2^j} \equiv 0 \pmod{2^{j+1}} for all j0 j \geq 0 .

\blacksquare

Want a route through all this instead of an archive? The track puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.

Source: NuminaMath-1.5, licensed Apache-2.0. Statement and solution reproduced as published; topic and difficulty added by this site.