Define the sequence a1,a2,… and b1,b2,… as a0=1,a1=4,a2=49 and for n≥0 {an+1=7an+6bn−3,bn+1=8an+7bn−4. Prove that for any non-negative integer n,an is a perfect square.
This one wants a proof. Work it on paper, read the official solution, then mark
yourself honestly — the ladder only means something if the record is true.
Official solution
1. Define the sequences and initial conditions: We are given the sequences an and bn with initial conditions: a0=1,a1=4,a2=49 and the recurrence relations: {an+1=7an+6bn−3,bn+1=8an+7bn−4.
2. **Express an+1 in terms of previous terms:** We start by expressing an+1 in terms of an and bn: an+1=7an+6bn−3 We also have: 7an=49an−1+42bn−1−21 Subtracting the second equation from the first: an+1−7an=(7an+6bn−3)−(49an−1+42bn−1−21) Simplifying, we get: an+1−7an=6bn−3−49an−1−42bn−1+21
3. **Use the recurrence relation for bn:** We know: bn−7bn−1=8an−1−4 Substituting this into the previous equation: an+1−7an=6(7bn−1+8an−1−4)−3−49an−1−42bn−1+21 Simplifying further: an+1−7an=42bn−1+48an−1−24−3−49an−1−42bn−1+21 an+1−7an=−an−1−6 Rearranging, we get: an+1=14an−an−1−6
4. Form the characteristic equation: The recurrence relation is: an+1−15an+15an−1−an−2=0 The characteristic equation is: x3−15x2+15x−1=0
5. Solve the characteristic equation: One root is obviously x=1. The other roots can be found by factoring or using the quadratic formula: (x−1)(x2−14x+1)=0 Solving the quadratic equation: x=214±196−4=7±43 So the roots are 1,7+43,7−43.
6. Form the general solution: The general solution to the recurrence relation is: an=A⋅1n+B⋅(7+43)n+C⋅(7−43)n Using the initial conditions a0=1, a1=4, and a2=49, we solve for A, B, and C: an=21+4(7+43)n+4(7−43)n Simplifying, we get: an=((2+3)n+(2−3)n)2⋅41
7. **Prove an is a perfect square:** Notice that: an=((2+3)n+(2−3)n)2 Since (2+3)n+(2−3)n is an integer for all n, an is a perfect square.
■
Source: NuminaMath-1.5,
licensed Apache-2.0.
Statement and solution reproduced as published; topic, difficulty and ordering added
by this site.