MAYBE Problem: a(x1) -> x1 a(b(c(x1))) -> c(c(a(b(b(x1))))) b(x1) -> a(x1) Proof: RT Transformation Processor: strict: a(x1) -> x1 a(b(c(x1))) -> c(c(a(b(b(x1))))) b(x1) -> a(x1) weak: Matrix Interpretation Processor: dimension: 1 interpretation: [b](x0) = x0 + 9, [c](x0) = x0 + 10, [a](x0) = x0 orientation: a(x1) = x1 >= x1 = x1 a(b(c(x1))) = x1 + 19 >= x1 + 38 = c(c(a(b(b(x1))))) b(x1) = x1 + 9 >= x1 = a(x1) problem: strict: a(x1) -> x1 a(b(c(x1))) -> c(c(a(b(b(x1))))) weak: b(x1) -> a(x1) Matrix Interpretation Processor: dimension: 1 interpretation: [b](x0) = x0 + 1, [c](x0) = x0 + 13, [a](x0) = x0 + 1 orientation: a(x1) = x1 + 1 >= x1 = x1 a(b(c(x1))) = x1 + 15 >= x1 + 29 = c(c(a(b(b(x1))))) b(x1) = x1 + 1 >= x1 + 1 = a(x1) problem: strict: a(b(c(x1))) -> c(c(a(b(b(x1))))) weak: a(x1) -> x1 b(x1) -> a(x1) Open