Use proof by mathematical induction to prove explicit formula for recursive sequence is correct

988 Views Asked by At

Here is the question I am having trouble with.


Suppose you have the following recursively defined sequence:

P1 = 4
Pk = Pk-1+ 4 · 3k for all integers k ≥ 2

Suppose you have used the method of iteration to find the following explicit formula:

P1 = 4
Pn = 2 · 3n+1 - 14 for all integers n ≥ 1

Use proof by mathematical induction to show this is the correct explicit formula.


Here is what I have so far:

Base case: n = 1, 4 = 2 · 31+1 - 14; 4 = 2 · 9 - 14; 4 = 18 - 14; 4 = 4 ✓

Assume: Pk = 2 · 3k+1 - 14 for all integers k >= 1

Now we must show that Pk+1 = 2 · 3(k+1)+1 - 14

Then we must get Pk+1 = Pk + 4 · 3k to look like what was previously stated. First, let’s substitute in our assumption:

(2 · 3k+1 - 14) + 4 · 3k

I will say that’s as far as I got because I have tried simplifying this multiple ways and I cannot even get it close to what it should look like. I’m starting to think I’ve made a mistake elsewhere. Any help is appreciated, thanks!

2

There are 2 best solutions below

5
On BEST ANSWER

Try using J.G.'s hint and then you can check your answer with the one below.

$P_k = 2 · 3^{k+1} - 14$

Therefore

$P_{k+1} = (2·3^{k+1} - 14)+4.3^{k+1}$

Add the $2·3^{k+1}$ and $4·3^{k+1}$ to get $6·3^{k+1}$

Then

$P_{k+1} = 6·3^{k+1} - 14=2·3^{k+2} - 14$

and you have the correct result.

2
On

You should have added $4\cdot 3^{k+1}$. It'll work now.