How to Prove a Sequence by Induction

AI Thread Summary
The discussion focuses on proving the sequence defined by a1 = 3, a2 = 6, and an = 5an-1 - 6an-2 + 2 for n ≥ 3. The initial attempts include verifying the base cases for n=1 and n=2, and then applying induction for n ≥ 3. Participants highlight errors in the calculations and provide guidance on manipulating the sequence's recursive formula. Ultimately, one user reports successfully finding the solution after receiving feedback. This thread illustrates the challenges and collaborative problem-solving involved in mathematical induction proofs.
silina01
Messages
12
Reaction score
0
Define the sequence of integers a1, a2, a3,... as follows:
a1 = 3
a2 = 6
an = 5an-1 - 6an-2 + 2 for all n ≥ 3
Prove that an = 1 + 2n-1 + 3n-1

------------------------------------------------------------------------------------------------
my attempt:
base case:
n=1
1+ 20 +30
= 1
= a1
therefore n=1 holds

n=2
1+ 21 +31
= 6
= a2
therefore n=2 holds

Assume k holds for all k > n, n≥3 then

an = 5an-1 - 6an-2 + 2
= 5(1+2n-2 + 3n-2) -6(1 + 2n-3+ 3n-3) +2
= 1 + 10n-2 + 15n-2 -12n-3 -18n-3

I have no idea what to do from here.
 
Last edited:
Physics news on Phys.org
silina01 said:
Assume k holds for all k > n, n≥3 then

an = 5an-1 - 6an-2 + 2
= 5(1+2n-2 + 3n-2) -6(1 + 2n-3+ 3n-3) +2
= 1 + 10n-2 + 15n-2 - 12n-3[/color] - 18n-3
5 \cdot 2^{n-2} \ne 10^{n-2}
5 \cdot 3^{n-2} \ne 15^{n-2}
...and so on.

I don't know if this will help, but note that
2^{n-2} = 2\cdot 2^{n-3}
and
3^{n-2} = 3\cdot 3^{n-3}
 
silina01 said:
= 5(1+2n-2 + 3n-2) -6(1 + 2n-3+ 3n-3) +2
= 1 + 10n-2 + 15n-2 -12n-3 -18n-3

Your second line is incorrect.

a\cdot b^n = a^1b^n \neq (ab)^n = a^nb^n
 
okay, but I am still stuck
 
Best I can do is give you some other examples that use the properties that you may need to continue:
4(2+5^{n-3}) = 8 + 4 \cdot 5^{n-3}
-7 \cdot 4^{n-1} = -7 \cdot 4 \cdot 4^{n-2} = -28 \cdot 4^{n-2}
12 \cdot 10^{n-5} - 4 \cdot 10^{n-5} = 8 \cdot 10^{n-5}

Study the above and try your problem again.


(Mods: hope I am not giving too much away here.)
 
silina01 said:
okay, but I am still stuck

Please post your corrected working, as far as it goes. (Maybe you still have a wrong equation.)
 
I found the answer, thank you all so much!
 
Last edited:
Back
Top