YES TRS: fib(0()) -> 0() fib(s(0())) -> s(0()) fib(s(s(x))) -> +(fib(s(x)),fib(x)) max/plus interpretations on N: fib_A(x1) = max{2, 8} fib#_A(x1) = max{15, 12} 0_A = 8 0#_A = 13 s_A(x1) = max{4, -5 + x1} s#_A(x1) = max{0, 6 + x1} +_A(x1,x2) = max{8, x1, x2} +#_A(x1,x2) = max{13, 11, 10} precedence: fib > + > s > 0