How would you go about solving the recurrence T(n) = T(n-1) + 16lg(n)? I don't think you can use the master method because it's T(n-1). I'm guessing you'd have to use iteration, but I'm not really sure how I would go about using that method. Any input would be great.
2026-04-18 08:17:35.1776500255
Solve the recurrence relation T(n) = T(n-1) + 16lg(n)
127 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
We have,
$$T(n)-T(n-1)=16 \lg n$$
We sum both sides from $n=1$ to $x$ to get:
$$\sum_{n=1}^{x} (T(n)-T(n-1))=\sum_{n=1}^{x} 16 \lg n$$
Notice that the left hand side is a telescoping sum.
$$T(x)-T(0)=\sum_{n=1}^{x} 16 \lg n$$
$$T(0)+\sum_{n=1}^{x} 16 \lg n=T(x)$$
Use properties of logarithms to show that this is,
$$16 \lg (x!)+T(0)=T(x)$$