MAYBE Problem: a(b(x1)) -> x1 a(c(x1)) -> b(b(x1)) c(b(x1)) -> a(a(c(c(x1)))) Proof: RT Transformation Processor: strict: a(b(x1)) -> x1 a(c(x1)) -> b(b(x1)) c(b(x1)) -> a(a(c(c(x1)))) weak: Matrix Interpretation Processor: dimension: 1 interpretation: [c](x0) = x0 + 7, [a](x0) = x0 + 5, [b](x0) = x0 + 24 orientation: a(b(x1)) = x1 + 29 >= x1 = x1 a(c(x1)) = x1 + 12 >= x1 + 48 = b(b(x1)) c(b(x1)) = x1 + 31 >= x1 + 24 = a(a(c(c(x1)))) problem: strict: a(c(x1)) -> b(b(x1)) weak: a(b(x1)) -> x1 c(b(x1)) -> a(a(c(c(x1)))) Open