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