I have a recurrence relation defined as:
$$f(k)=\frac{[f(k-1)]^2}{f(k-2)}$$
Wolfram Alpha shows that the closed form for this relation is:
$$ f(k)=\exp{(c_2k+c_1)} $$
I'm not really sure how to go about finding this solution (it's been a few years...). Hints?
Your recurrence relation can be rewritten to $$\frac{f(k)}{f(k-1)} = \frac{f(k-1)}{f(k-2)}.$$ If we define $g(k)=\frac{f(k)}{f(k-1)}$, this becomes $g(k)=g(k-1)$. Obviously, this implies $g(k)=a$. By definition of $g$ we now have the remaining equation $\frac{f(k)}{f(k-1)} = a$ or $f(k) = af(k-1)$. This is solved by $f(k) = b\cdot a^k$.
To get Wolfram Alpha's version of the solution, we just pick $c_2=\log(a)$ and $c_1=\log(b)$.