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