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