Solve the following recurrences using backward substitutions: $x(n) = 3x(n-1)$, for $n > 1$; $x(1) = 4$
2026-05-05 21:38:35.1778017115
Solve the following recurrences using backward substitutions:
83 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
HINT: Just start substituting:
$$\begin{align*} x(n)&=3x(n-1)\\ &=3\big(3x(n-2)\big)\\ &=3^2x(n-2)\\ &=3^2\big(3x(n-3)\big)\\ &=3^3x(n-3)\;, \end{align*}$$
and so on. In general, when you’ve worked back $k$ steps you’ll have $x(n)$ equal to some multiple of $x(n-k)$; what will that multiple be if the pattern holds up?
Now take $k=n-1$, and you’ll get a closed form for $x(n)$.