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