MAYBE Problem: a(x1) -> x1 a(a(x1)) -> b(a(b(c(c(b(x1)))))) c(b(x1)) -> a(x1) Proof: RT Transformation Processor: strict: a(x1) -> x1 a(a(x1)) -> b(a(b(c(c(b(x1)))))) c(b(x1)) -> a(x1) weak: Matrix Interpretation Processor: dimension: 1 interpretation: [c](x0) = x0 + 12, [b](x0) = x0 + 5, [a](x0) = x0 + 16 orientation: a(x1) = x1 + 16 >= x1 = x1 a(a(x1)) = x1 + 32 >= x1 + 55 = b(a(b(c(c(b(x1)))))) c(b(x1)) = x1 + 17 >= x1 + 16 = a(x1) problem: strict: a(a(x1)) -> b(a(b(c(c(b(x1)))))) weak: a(x1) -> x1 c(b(x1)) -> a(x1) Open