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