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