YES TRS: f(x,y) -> x g(a()) -> h(a(),b(),a()) i(x) -> f(x,x) h(x,x,y) -> g(x) max/plus interpretations on N: f_A(x1,x2) = max{1, x1, 0} f#_A(x1,x2) = max{2, -1, 1} g_A(x1) = max{0, 2} g#_A(x1) = max{0, -2 + x1} a_A = 4 a#_A = 3 h_A(x1,x2,x3) = max{2, 1, 2, 2} h#_A(x1,x2,x3) = max{1, -3, -1 + x2, 2} b_A = 3 b#_A = 1 i_A(x1) = max{0, 1 + x1} i#_A(x1) = max{0, 2} precedence: a > g = i > f = h = b