YES Problem: active(zeros()) -> mark(cons(0(),zeros())) active(tail(cons(X,XS))) -> mark(XS) mark(zeros()) -> active(zeros()) mark(cons(X1,X2)) -> active(cons(mark(X1),X2)) mark(0()) -> active(0()) mark(tail(X)) -> active(tail(mark(X))) cons(mark(X1),X2) -> cons(X1,X2) cons(X1,mark(X2)) -> cons(X1,X2) cons(active(X1),X2) -> cons(X1,X2) cons(X1,active(X2)) -> cons(X1,X2) tail(mark(X)) -> tail(X) tail(active(X)) -> tail(X) Proof: Matrix Interpretation Processor: dim=1 interpretation: [mark](x0) = 2x0, [active](x0) = x0, [cons](x0, x1) = 4x0 + x1, [tail](x0) = 4x0 + 1, [zeros] = 0, [0] = 0 orientation: active(zeros()) = 0 >= 0 = mark(cons(0(),zeros())) active(tail(cons(X,XS))) = 16X + 4XS + 1 >= 2XS = mark(XS) mark(zeros()) = 0 >= 0 = active(zeros()) mark(cons(X1,X2)) = 8X1 + 2X2 >= 8X1 + X2 = active(cons(mark(X1),X2)) mark(0()) = 0 >= 0 = active(0()) mark(tail(X)) = 8X + 2 >= 8X + 1 = active(tail(mark(X))) cons(mark(X1),X2) = 8X1 + X2 >= 4X1 + X2 = cons(X1,X2) cons(X1,mark(X2)) = 4X1 + 2X2 >= 4X1 + X2 = cons(X1,X2) cons(active(X1),X2) = 4X1 + X2 >= 4X1 + X2 = cons(X1,X2) cons(X1,active(X2)) = 4X1 + X2 >= 4X1 + X2 = cons(X1,X2) tail(mark(X)) = 8X + 1 >= 4X + 1 = tail(X) tail(active(X)) = 4X + 1 >= 4X + 1 = tail(X) problem: active(zeros()) -> mark(cons(0(),zeros())) mark(zeros()) -> active(zeros()) mark(cons(X1,X2)) -> active(cons(mark(X1),X2)) mark(0()) -> active(0()) cons(mark(X1),X2) -> cons(X1,X2) cons(X1,mark(X2)) -> cons(X1,X2) cons(active(X1),X2) -> cons(X1,X2) cons(X1,active(X2)) -> cons(X1,X2) tail(mark(X)) -> tail(X) tail(active(X)) -> tail(X) Matrix Interpretation Processor: dim=3 interpretation: [1 1 0] [0] [mark](x0) = [0 0 0]x0 + [0] [0 0 1] [1], [1 1 1] [0] [active](x0) = [0 0 0]x0 + [0] [0 0 0] [1], [1 1 0] [1 0 1] [cons](x0, x1) = [0 0 0]x0 + [0 0 0]x1 [0 0 0] [0 0 0] , [1 0 1] [tail](x0) = [1 1 0]x0 [0 0 0] , [0] [zeros] = [1] [0], [0] [0] = [0] [0] orientation: [1] [0] active(zeros()) = [0] >= [0] = mark(cons(0(),zeros())) [1] [1] [1] [1] mark(zeros()) = [0] >= [0] = active(zeros()) [1] [1] [1 1 0] [1 0 1] [0] [1 1 0] [1 0 1] [0] mark(cons(X1,X2)) = [0 0 0]X1 + [0 0 0]X2 + [0] >= [0 0 0]X1 + [0 0 0]X2 + [0] = active(cons(mark(X1),X2)) [0 0 0] [0 0 0] [1] [0 0 0] [0 0 0] [1] [0] [0] mark(0()) = [0] >= [0] = active(0()) [1] [1] [1 1 0] [1 0 1] [1 1 0] [1 0 1] cons(mark(X1),X2) = [0 0 0]X1 + [0 0 0]X2 >= [0 0 0]X1 + [0 0 0]X2 = cons(X1,X2) [0 0 0] [0 0 0] [0 0 0] [0 0 0] [1 1 0] [1 1 1] [1] [1 1 0] [1 0 1] cons(X1,mark(X2)) = [0 0 0]X1 + [0 0 0]X2 + [0] >= [0 0 0]X1 + [0 0 0]X2 = cons(X1,X2) [0 0 0] [0 0 0] [0] [0 0 0] [0 0 0] [1 1 1] [1 0 1] [1 1 0] [1 0 1] cons(active(X1),X2) = [0 0 0]X1 + [0 0 0]X2 >= [0 0 0]X1 + [0 0 0]X2 = cons(X1,X2) [0 0 0] [0 0 0] [0 0 0] [0 0 0] [1 1 0] [1 1 1] [1] [1 1 0] [1 0 1] cons(X1,active(X2)) = [0 0 0]X1 + [0 0 0]X2 + [0] >= [0 0 0]X1 + [0 0 0]X2 = cons(X1,X2) [0 0 0] [0 0 0] [0] [0 0 0] [0 0 0] [1 1 1] [1] [1 0 1] tail(mark(X)) = [1 1 0]X + [0] >= [1 1 0]X = tail(X) [0 0 0] [0] [0 0 0] [1 1 1] [1] [1 0 1] tail(active(X)) = [1 1 1]X + [0] >= [1 1 0]X = tail(X) [0 0 0] [0] [0 0 0] problem: mark(zeros()) -> active(zeros()) mark(cons(X1,X2)) -> active(cons(mark(X1),X2)) mark(0()) -> active(0()) cons(mark(X1),X2) -> cons(X1,X2) cons(active(X1),X2) -> cons(X1,X2) Matrix Interpretation Processor: dim=3 interpretation: [1 1 0] [mark](x0) = [0 1 0]x0 [0 0 1] , [active](x0) = x0 , [1 0 1] [1 0 0] [0] [cons](x0, x1) = [0 1 0]x0 + [0 0 0]x1 + [1] [0 1 0] [0 0 0] [1], [0] [zeros] = [1] [0], [0] [0] = [1] [0] orientation: [1] [0] mark(zeros()) = [1] >= [1] = active(zeros()) [0] [0] [1 1 1] [1 0 0] [1] [1 1 1] [1 0 0] [0] mark(cons(X1,X2)) = [0 1 0]X1 + [0 0 0]X2 + [1] >= [0 1 0]X1 + [0 0 0]X2 + [1] = active(cons(mark(X1),X2)) [0 1 0] [0 0 0] [1] [0 1 0] [0 0 0] [1] [1] [0] mark(0()) = [1] >= [1] = active(0()) [0] [0] [1 1 1] [1 0 0] [0] [1 0 1] [1 0 0] [0] cons(mark(X1),X2) = [0 1 0]X1 + [0 0 0]X2 + [1] >= [0 1 0]X1 + [0 0 0]X2 + [1] = cons(X1,X2) [0 1 0] [0 0 0] [1] [0 1 0] [0 0 0] [1] [1 0 1] [1 0 0] [0] [1 0 1] [1 0 0] [0] cons(active(X1),X2) = [0 1 0]X1 + [0 0 0]X2 + [1] >= [0 1 0]X1 + [0 0 0]X2 + [1] = cons(X1,X2) [0 1 0] [0 0 0] [1] [0 1 0] [0 0 0] [1] problem: cons(mark(X1),X2) -> cons(X1,X2) cons(active(X1),X2) -> cons(X1,X2) Matrix Interpretation Processor: dim=3 interpretation: [1 0 0] [1] [mark](x0) = [0 1 0]x0 + [0] [0 0 0] [0], [1 0 0] [0] [active](x0) = [0 1 0]x0 + [1] [0 0 0] [0], [1 1 0] [1 0 0] [cons](x0, x1) = [1 0 0]x0 + [0 0 0]x1 [0 0 0] [0 0 0] orientation: [1 1 0] [1 0 0] [1] [1 1 0] [1 0 0] cons(mark(X1),X2) = [1 0 0]X1 + [0 0 0]X2 + [1] >= [1 0 0]X1 + [0 0 0]X2 = cons(X1,X2) [0 0 0] [0 0 0] [0] [0 0 0] [0 0 0] [1 1 0] [1 0 0] [1] [1 1 0] [1 0 0] cons(active(X1),X2) = [1 0 0]X1 + [0 0 0]X2 + [0] >= [1 0 0]X1 + [0 0 0]X2 = cons(X1,X2) [0 0 0] [0 0 0] [0] [0 0 0] [0 0 0] problem: Qed