MAYBE Problem: f(s(x),x) -> f(s(x),round(x)) round(0()) -> 0() round(0()) -> s(0()) round(s(0())) -> s(0()) round(s(s(x))) -> s(s(round(x))) Proof: RT Transformation Processor: strict: f(s(x),x) -> f(s(x),round(x)) round(0()) -> 0() round(0()) -> s(0()) round(s(0())) -> s(0()) round(s(s(x))) -> s(s(round(x))) weak: Matrix Interpretation Processor: dimension: 1 interpretation: [0] = 20, [round](x0) = x0 + 26, [f](x0, x1) = x0 + x1 + 12, [s](x0) = x0 + 4 orientation: f(s(x),x) = 2x + 16 >= 2x + 42 = f(s(x),round(x)) round(0()) = 46 >= 20 = 0() round(0()) = 46 >= 24 = s(0()) round(s(0())) = 50 >= 24 = s(0()) round(s(s(x))) = x + 34 >= x + 34 = s(s(round(x))) problem: strict: f(s(x),x) -> f(s(x),round(x)) round(s(s(x))) -> s(s(round(x))) weak: round(0()) -> 0() round(0()) -> s(0()) round(s(0())) -> s(0()) Open