MAYBE Problem: a(x1) -> x1 a(b(x1)) -> b(c(a(x1))) c(c(a(x1))) -> a(b(a(x1))) Proof: RT Transformation Processor: strict: a(x1) -> x1 a(b(x1)) -> b(c(a(x1))) c(c(a(x1))) -> a(b(a(x1))) weak: Matrix Interpretation Processor: dimension: 1 interpretation: [c](x0) = x0 + 13, [b](x0) = x0 + 16, [a](x0) = x0 + 5 orientation: a(x1) = x1 + 5 >= x1 = x1 a(b(x1)) = x1 + 21 >= x1 + 34 = b(c(a(x1))) c(c(a(x1))) = x1 + 31 >= x1 + 26 = a(b(a(x1))) problem: strict: a(b(x1)) -> b(c(a(x1))) weak: a(x1) -> x1 c(c(a(x1))) -> a(b(a(x1))) Open