Worked Example 11.3.1.
Solve the recurrence relation from ExampleΒ 11.2.1.
Solution.
The sequence in the example was defined recursively by \(h_0 = 100 \) and
\begin{align*}
h_k \amp = \frac{3}{4} \, h_{k-1} \text{,} \amp k \amp \ge 1 \text{.}
\end{align*}
We can apply this formula to every term in the sequence, except for the first, using the pattern βeach term is three-quarters of the previous term.β That is,
\begin{align*}
h_k \amp = \frac{3}{4} \, h_{k-1} \text{,} \amp
h_{k-1} \amp = \frac{3}{4} \, h_{k-2} \text{,} \amp
h_{k-2} \amp = \frac{3}{4} \, h_{k-3} \text{,} \amp
\amp \dotsc\text{.}
\end{align*}
Therefore, for \(k \ge 1 \text{,}\) we can calculate
\begin{align*}
h_k \amp = \frac{3}{4}\,h_{k-1} \\
\amp = \frac{3}{4}\left(\frac{3}{4}\,h_{k-2}\right)
= \left(\frac{3}{4}\right)^2 h_{k-2}\\
\amp = \left(\frac{3}{4}\right)^2\left(\frac{3}{4}\,h_{k-3}\right)
= \left(\frac{3}{4}\right)^3 h_{k-3}\\
\amp \vdots \\
\amp = \left(\frac{3}{4}\right)^k h_0
= \left(\frac{3}{4}\right)^k (100).
\end{align*}
(Note that this formula is also valid for \(k=0 \text{.}\))
We can verify our formula by substituting it into the original recurrence relation:
\begin{equation*}
\mathrm{RHS}
= \frac{3}{4}\,h_{k-1}
= \frac{3}{4}\,\left(\frac{3}{4}\right)^{k-1} h_0
= \left(\frac{3}{4}\right)^k h_0
= h_k
= \mathrm{LHS}\text{.}
\end{equation*}
We could also prove our formula is correct by induction.

