The function \(f(n) = 3f(n-2) - 2f(n-1)\), where \(f(2) = 3\) and \(f(1) = -1\). What is the value of \(f(5)\)?
Using the recursion, we get f(3) = -9, f(4) = 18, and f(5) = -63. Hope this helps!