MAYBE Problem: a(b(x1)) -> x1 a(c(x1)) -> c(c(x1)) b(c(x1)) -> a(a(b(b(x1)))) Proof: RT Transformation Processor: strict: a(b(x1)) -> x1 a(c(x1)) -> c(c(x1)) b(c(x1)) -> a(a(b(b(x1)))) weak: Matrix Interpretation Processor: dimension: 1 interpretation: [c](x0) = x0 + 16, [a](x0) = x0 + 6, [b](x0) = x0 + 3 orientation: a(b(x1)) = x1 + 9 >= x1 = x1 a(c(x1)) = x1 + 22 >= x1 + 32 = c(c(x1)) b(c(x1)) = x1 + 19 >= x1 + 18 = a(a(b(b(x1)))) problem: strict: a(c(x1)) -> c(c(x1)) weak: a(b(x1)) -> x1 b(c(x1)) -> a(a(b(b(x1)))) Open