Recurrence equation process of solving

28 Views Asked by At

i am solving some reccurence relations and I am getting lost and not sure where to go I have $$T(n)=T(n-1)+ 1/7^{(n-1)}\quad \text{ where } T(1)=1$$ Which I tried solving with something like this

T(1)=1
T(2)=T(1) + 1/7^(1)
T(3)=T(2) + 1/7^(2)
..
T(k)=T(n) + 1/7^(k)

I probably didnt completely understand how to solve it or I did something wrong. Couldnt find similar cases like these on the internet except for few where it is not well explained.

Please help me understand how to solve this case asymptotically and accurately.

Thank you

1

There are 1 best solutions below

0
On

I think you mean ' in general case' by 'asymptotically'. Actually 'asymptotically' means at the infinity.

You can write your problem as

$$ T_n -T_{n-1}=\dfrac{1}{7^{n-1}} $$

And using what we call telescopic sum to find explicit expression of $T_n$.

$$T_N=\sum_{n=1}^N T_n-T_{n-1}=\sum_{n=1}^N\dfrac{1}{7^{n-1}}=...$$

Where the last sum is a geometric sum.

Can you finish the calculus ?