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