MAYBE Problem: a(a(x1)) -> a(b(b(b(x1)))) b(a(x1)) -> b(b(c(x1))) a(b(b(c(x1)))) -> a(a(a(b(x1)))) Proof: RT Transformation Processor: strict: a(a(x1)) -> a(b(b(b(x1)))) b(a(x1)) -> b(b(c(x1))) a(b(b(c(x1)))) -> a(a(a(b(x1)))) weak: Matrix Interpretation Processor: dimension: 1 interpretation: [c](x0) = x0 + 5, [b](x0) = x0, [a](x0) = x0 + 2 orientation: a(a(x1)) = x1 + 4 >= x1 + 2 = a(b(b(b(x1)))) b(a(x1)) = x1 + 2 >= x1 + 5 = b(b(c(x1))) a(b(b(c(x1)))) = x1 + 7 >= x1 + 6 = a(a(a(b(x1)))) problem: strict: b(a(x1)) -> b(b(c(x1))) weak: a(a(x1)) -> a(b(b(b(x1)))) a(b(b(c(x1)))) -> a(a(a(b(x1)))) Open