As the title says, I need to find the explicit form of the recursive sequence defined above, and I am very stuck on this.
2026-03-26 01:25:11.1774488311
On
Explicit form of $ b_1= 2, b_k = b_{k-1} + 2\cdot 3^k$ for all integers $ k\ge 2 $
37 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
There are 3 best solutions below
0
On
Consider the difference between consecutive terms and take their sum:
$b_k - b_{k-1} = 2 \times 3^k$
Summing over the left hand side gives:
$\sum_{k = 2}^n (b_k - b_{k-1}) = (b_2 - b_1) + (b_3 - b_2) + ... + (b_n - b_{n-1}) = b_n - b_1$
The sum of the RHS from $k = 2$ to $k = n$ can be evaluated using the formula for the sum of terms in a geometric series.
Equate both sums, then solve for $b_k$.
So you have $b_k = 2\cdot 3^k + 2\cdot 3^{k-1}+\dots+2\cdot 3^2 + 2$. This is the same as $2\cdot (3^k+3^{k-1}+\dots+3^0) - 2\cdot 3$.
The term in parentheses is a geometric progression. Can you use the geometric progression formula to find a closed form?