MAYBE Problem: a(a(x1)) -> x1 a(a(b(x1))) -> b(a(b(a(a(x1))))) b(b(x1)) -> x1 Proof: RT Transformation Processor: strict: a(a(x1)) -> x1 a(a(b(x1))) -> b(a(b(a(a(x1))))) b(b(x1)) -> x1 weak: Matrix Interpretation Processor: dimension: 1 interpretation: [b](x0) = x0 + 6, [a](x0) = x0 + 3 orientation: a(a(x1)) = x1 + 6 >= x1 = x1 a(a(b(x1))) = x1 + 12 >= x1 + 21 = b(a(b(a(a(x1))))) b(b(x1)) = x1 + 12 >= x1 = x1 problem: strict: a(a(b(x1))) -> b(a(b(a(a(x1))))) weak: a(a(x1)) -> x1 b(b(x1)) -> x1 Open