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