YES Problem: and(true(),X) -> activate(X) and(false(),Y) -> false() if(true(),X,Y) -> activate(X) if(false(),X,Y) -> activate(Y) add(0(),X) -> activate(X) add(s(X),Y) -> s(n__add(activate(X),activate(Y))) first(0(),X) -> nil() first(s(X),cons(Y,Z)) -> cons(activate(Y),n__first(activate(X),activate(Z))) from(X) -> cons(activate(X),n__from(n__s(activate(X)))) add(X1,X2) -> n__add(X1,X2) first(X1,X2) -> n__first(X1,X2) from(X) -> n__from(X) s(X) -> n__s(X) activate(n__add(X1,X2)) -> add(activate(X1),X2) activate(n__first(X1,X2)) -> first(activate(X1),activate(X2)) activate(n__from(X)) -> from(X) activate(n__s(X)) -> s(X) activate(X) -> X Proof: DP Processor: DPs: and#(true(),X) -> activate#(X) if#(true(),X,Y) -> activate#(X) if#(false(),X,Y) -> activate#(Y) add#(0(),X) -> activate#(X) add#(s(X),Y) -> activate#(Y) add#(s(X),Y) -> activate#(X) add#(s(X),Y) -> s#(n__add(activate(X),activate(Y))) first#(s(X),cons(Y,Z)) -> activate#(Z) first#(s(X),cons(Y,Z)) -> activate#(X) first#(s(X),cons(Y,Z)) -> activate#(Y) from#(X) -> activate#(X) activate#(n__add(X1,X2)) -> activate#(X1) activate#(n__add(X1,X2)) -> add#(activate(X1),X2) activate#(n__first(X1,X2)) -> activate#(X2) activate#(n__first(X1,X2)) -> activate#(X1) activate#(n__first(X1,X2)) -> first#(activate(X1),activate(X2)) activate#(n__from(X)) -> from#(X) activate#(n__s(X)) -> s#(X) TRS: and(true(),X) -> activate(X) and(false(),Y) -> false() if(true(),X,Y) -> activate(X) if(false(),X,Y) -> activate(Y) add(0(),X) -> activate(X) add(s(X),Y) -> s(n__add(activate(X),activate(Y))) first(0(),X) -> nil() first(s(X),cons(Y,Z)) -> cons(activate(Y),n__first(activate(X),activate(Z))) from(X) -> cons(activate(X),n__from(n__s(activate(X)))) add(X1,X2) -> n__add(X1,X2) first(X1,X2) -> n__first(X1,X2) from(X) -> n__from(X) s(X) -> n__s(X) activate(n__add(X1,X2)) -> add(activate(X1),X2) activate(n__first(X1,X2)) -> first(activate(X1),activate(X2)) activate(n__from(X)) -> from(X) activate(n__s(X)) -> s(X) activate(X) -> X Matrix Interpretation Processor: dim=1 interpretation: [from#](x0) = 1/2x0 + 1, [first#](x0, x1) = 1/2x0 + x1, [s#](x0) = 0, [add#](x0, x1) = 1/2x0 + 1/2x1, [if#](x0, x1, x2) = x0 + 2x1 + 1/2x2 + 2, [activate#](x0) = 1/2x0, [and#](x0, x1) = 2x1 + 1, [n__from](x0) = x0 + 3, [n__s](x0) = x0 + 1, [from](x0) = x0 + 3, [n__first](x0, x1) = x0 + 2x1 + 2, [cons](x0, x1) = 1/2x0 + 1/2x1 + 1, [nil] = 3, [first](x0, x1) = x0 + 2x1 + 2, [n__add](x0, x1) = 2x0 + 2x1 + 1, [s](x0) = x0 + 1, [add](x0, x1) = 2x0 + 2x1 + 1, [0] = 1, [if](x0, x1, x2) = x1 + x2, [false] = 3/2, [activate](x0) = x0, [and](x0, x1) = 3x0 + 2x1 + 5/2, [true] = 0 orientation: and#(true(),X) = 2X + 1 >= 1/2X = activate#(X) if#(true(),X,Y) = 2X + 1/2Y + 2 >= 1/2X = activate#(X) if#(false(),X,Y) = 2X + 1/2Y + 7/2 >= 1/2Y = activate#(Y) add#(0(),X) = 1/2X + 1/2 >= 1/2X = activate#(X) add#(s(X),Y) = 1/2X + 1/2Y + 1/2 >= 1/2Y = activate#(Y) add#(s(X),Y) = 1/2X + 1/2Y + 1/2 >= 1/2X = activate#(X) add#(s(X),Y) = 1/2X + 1/2Y + 1/2 >= 0 = s#(n__add(activate(X),activate(Y))) first#(s(X),cons(Y,Z)) = 1/2X + 1/2Y + 1/2Z + 3/2 >= 1/2Z = activate#(Z) first#(s(X),cons(Y,Z)) = 1/2X + 1/2Y + 1/2Z + 3/2 >= 1/2X = activate#(X) first#(s(X),cons(Y,Z)) = 1/2X + 1/2Y + 1/2Z + 3/2 >= 1/2Y = activate#(Y) from#(X) = 1/2X + 1 >= 1/2X = activate#(X) activate#(n__add(X1,X2)) = X1 + X2 + 1/2 >= 1/2X1 = activate#(X1) activate#(n__add(X1,X2)) = X1 + X2 + 1/2 >= 1/2X1 + 1/2X2 = add#(activate(X1),X2) activate#(n__first(X1,X2)) = 1/2X1 + X2 + 1 >= 1/2X2 = activate#(X2) activate#(n__first(X1,X2)) = 1/2X1 + X2 + 1 >= 1/2X1 = activate#(X1) activate#(n__first(X1,X2)) = 1/2X1 + X2 + 1 >= 1/2X1 + X2 = first#(activate(X1),activate(X2)) activate#(n__from(X)) = 1/2X + 3/2 >= 1/2X + 1 = from#(X) activate#(n__s(X)) = 1/2X + 1/2 >= 0 = s#(X) and(true(),X) = 2X + 5/2 >= X = activate(X) and(false(),Y) = 2Y + 7 >= 3/2 = false() if(true(),X,Y) = X + Y >= X = activate(X) if(false(),X,Y) = X + Y >= Y = activate(Y) add(0(),X) = 2X + 3 >= X = activate(X) add(s(X),Y) = 2X + 2Y + 3 >= 2X + 2Y + 2 = s(n__add(activate(X),activate(Y))) first(0(),X) = 2X + 3 >= 3 = nil() first(s(X),cons(Y,Z)) = X + Y + Z + 5 >= 1/2X + 1/2Y + Z + 2 = cons(activate(Y),n__first(activate(X),activate(Z))) from(X) = X + 3 >= X + 3 = cons(activate(X),n__from(n__s(activate(X)))) add(X1,X2) = 2X1 + 2X2 + 1 >= 2X1 + 2X2 + 1 = n__add(X1,X2) first(X1,X2) = X1 + 2X2 + 2 >= X1 + 2X2 + 2 = n__first(X1,X2) from(X) = X + 3 >= X + 3 = n__from(X) s(X) = X + 1 >= X + 1 = n__s(X) activate(n__add(X1,X2)) = 2X1 + 2X2 + 1 >= 2X1 + 2X2 + 1 = add(activate(X1),X2) activate(n__first(X1,X2)) = X1 + 2X2 + 2 >= X1 + 2X2 + 2 = first(activate(X1),activate(X2)) activate(n__from(X)) = X + 3 >= X + 3 = from(X) activate(n__s(X)) = X + 1 >= X + 1 = s(X) activate(X) = X >= X = X problem: DPs: TRS: and(true(),X) -> activate(X) and(false(),Y) -> false() if(true(),X,Y) -> activate(X) if(false(),X,Y) -> activate(Y) add(0(),X) -> activate(X) add(s(X),Y) -> s(n__add(activate(X),activate(Y))) first(0(),X) -> nil() first(s(X),cons(Y,Z)) -> cons(activate(Y),n__first(activate(X),activate(Z))) from(X) -> cons(activate(X),n__from(n__s(activate(X)))) add(X1,X2) -> n__add(X1,X2) first(X1,X2) -> n__first(X1,X2) from(X) -> n__from(X) s(X) -> n__s(X) activate(n__add(X1,X2)) -> add(activate(X1),X2) activate(n__first(X1,X2)) -> first(activate(X1),activate(X2)) activate(n__from(X)) -> from(X) activate(n__s(X)) -> s(X) activate(X) -> X Qed