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