Which of the 2 grows quicker? $f(x)$, $g(x)$, or both grow equally as quick?
Definitions
Notation
$a [x] b = a ↑^{x-2} b$
Functions
$f(x) := \begin{cases} 1, & \text{if } x=0\\ f(x-1) [f(x-1)] f(x-1), & \text{if } x<0 \end{cases}$
$g(x) := \begin{cases} 3 [6] 3, & \text{if } x=0\\ 3 [g(x-1)] 3, & \text{if } x<0 \end{cases}$
Note
$g(64)$ is Graham’s number.
My conjecture
$f(x)$ is faster
My reasoning
Both the operands and operator change for every $x$.
Questions
Is my conjecture true or false?
If so, how much quicker?
How do you prove it?