I need to know how to solve this problem:
Solve the following recurrence relation: x(n) = 3x(n-1) for n > 1, x(1) = 4.
It requires backwards substitution to solve.
This provides an example of using backwards substitution for a recurrence relation problem.