YES We show the termination of the TRS R: fst(|0|(),Z) -> nil() fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) from(X) -> cons(X,n__from(n__s(X))) add(|0|(),X) -> X add(s(X),Y) -> s(n__add(activate(X),Y)) len(nil()) -> |0|() len(cons(X,Z)) -> s(n__len(activate(Z))) fst(X1,X2) -> n__fst(X1,X2) from(X) -> n__from(X) s(X) -> n__s(X) add(X1,X2) -> n__add(X1,X2) len(X) -> n__len(X) activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) activate(n__from(X)) -> from(activate(X)) activate(n__s(X)) -> s(X) activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) activate(n__len(X)) -> len(activate(X)) activate(X) -> X -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: fst#(s(X),cons(Y,Z)) -> activate#(Z) p3: add#(s(X),Y) -> s#(n__add(activate(X),Y)) p4: add#(s(X),Y) -> activate#(X) p5: len#(cons(X,Z)) -> s#(n__len(activate(Z))) p6: len#(cons(X,Z)) -> activate#(Z) p7: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p8: activate#(n__fst(X1,X2)) -> activate#(X1) p9: activate#(n__fst(X1,X2)) -> activate#(X2) p10: activate#(n__from(X)) -> from#(activate(X)) p11: activate#(n__from(X)) -> activate#(X) p12: activate#(n__s(X)) -> s#(X) p13: activate#(n__add(X1,X2)) -> add#(activate(X1),activate(X2)) p14: activate#(n__add(X1,X2)) -> activate#(X1) p15: activate#(n__add(X1,X2)) -> activate#(X2) p16: activate#(n__len(X)) -> len#(activate(X)) p17: activate#(n__len(X)) -> activate#(X) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The estimated dependency graph contains the following SCCs: {p1, p2, p4, p6, p7, p8, p9, p11, p13, p14, p15, p16, p17} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__len(X)) -> activate#(X) p3: activate#(n__len(X)) -> len#(activate(X)) p4: len#(cons(X,Z)) -> activate#(Z) p5: activate#(n__add(X1,X2)) -> activate#(X2) p6: activate#(n__add(X1,X2)) -> activate#(X1) p7: activate#(n__add(X1,X2)) -> add#(activate(X1),activate(X2)) p8: add#(s(X),Y) -> activate#(X) p9: activate#(n__from(X)) -> activate#(X) p10: activate#(n__fst(X1,X2)) -> activate#(X2) p11: activate#(n__fst(X1,X2)) -> activate#(X1) p12: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p13: fst#(s(X),cons(Y,Z)) -> activate#(Z) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18 Take the reduction pair: weighted path order base order: matrix interpretations: carrier: N^2 order: lexicographic order interpretations: fst#_A(x1,x2) = ((0,0),(1,0)) x1 + ((0,0),(1,0)) x2 + (6,9) s_A(x1) = ((1,0),(0,0)) x1 + (0,11) cons_A(x1,x2) = ((1,0),(0,0)) x2 + (0,6) activate#_A(x1) = ((0,0),(1,0)) x1 + (6,9) n__len_A(x1) = ((1,0),(1,1)) x1 + (2,11) len#_A(x1) = ((0,0),(1,0)) x1 + (6,10) activate_A(x1) = ((1,0),(1,1)) x1 + (0,5) n__add_A(x1,x2) = ((1,0),(1,1)) x1 + x2 + (7,10) add#_A(x1,x2) = ((0,0),(1,0)) x1 + ((0,0),(1,0)) x2 + (6,11) n__from_A(x1) = ((1,0),(0,0)) x1 + (1,7) n__fst_A(x1,x2) = ((1,0),(1,1)) x1 + ((1,0),(1,1)) x2 + (7,3) fst_A(x1,x2) = ((1,0),(1,1)) x1 + ((1,0),(1,1)) x2 + (7,4) |0|_A() = (1,1) nil_A() = (0,7) from_A(x1) = ((1,0),(0,0)) x1 + (1,8) n__s_A(x1) = ((1,0),(0,0)) x1 + (0,7) add_A(x1,x2) = ((1,0),(1,1)) x1 + x2 + (7,11) len_A(x1) = ((1,0),(1,1)) x1 + (2,12) precedence: activate > n__add = add > n__len = len > s = n__s > cons = n__fst = fst = from > n__from > |0| > nil > fst# = activate# = len# = add# partial status: pi(fst#) = [] pi(s) = [] pi(cons) = [] pi(activate#) = [] pi(n__len) = [1] pi(len#) = [] pi(activate) = [] pi(n__add) = [2] pi(add#) = [] pi(n__from) = [] pi(n__fst) = [] pi(fst) = [] pi(|0|) = [] pi(nil) = [] pi(from) = [] pi(n__s) = [] pi(add) = [2] pi(len) = [1] The next rules are strictly ordered: p11 We remove them from the problem. -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__len(X)) -> activate#(X) p3: activate#(n__len(X)) -> len#(activate(X)) p4: len#(cons(X,Z)) -> activate#(Z) p5: activate#(n__add(X1,X2)) -> activate#(X2) p6: activate#(n__add(X1,X2)) -> activate#(X1) p7: activate#(n__add(X1,X2)) -> add#(activate(X1),activate(X2)) p8: add#(s(X),Y) -> activate#(X) p9: activate#(n__from(X)) -> activate#(X) p10: activate#(n__fst(X1,X2)) -> activate#(X2) p11: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p12: fst#(s(X),cons(Y,Z)) -> activate#(Z) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The estimated dependency graph contains the following SCCs: {p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p3: fst#(s(X),cons(Y,Z)) -> activate#(Z) p4: activate#(n__fst(X1,X2)) -> activate#(X2) p5: activate#(n__from(X)) -> activate#(X) p6: activate#(n__add(X1,X2)) -> add#(activate(X1),activate(X2)) p7: add#(s(X),Y) -> activate#(X) p8: activate#(n__add(X1,X2)) -> activate#(X1) p9: activate#(n__add(X1,X2)) -> activate#(X2) p10: activate#(n__len(X)) -> len#(activate(X)) p11: len#(cons(X,Z)) -> activate#(Z) p12: activate#(n__len(X)) -> activate#(X) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18 Take the reduction pair: weighted path order base order: matrix interpretations: carrier: N^2 order: lexicographic order interpretations: fst#_A(x1,x2) = ((0,0),(1,0)) x1 + ((0,0),(1,0)) x2 + (5,6) s_A(x1) = ((1,0),(0,0)) x1 + (0,8) cons_A(x1,x2) = x2 + (0,1) activate#_A(x1) = ((0,0),(1,0)) x1 + (5,5) n__fst_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (6,9) activate_A(x1) = ((1,0),(1,1)) x1 + (0,3) n__from_A(x1) = ((1,0),(1,1)) x1 + (9,6) n__add_A(x1,x2) = ((1,0),(1,1)) x1 + x2 + (5,4) add#_A(x1,x2) = ((0,0),(1,0)) x1 + (5,6) n__len_A(x1) = ((1,0),(0,0)) x1 + (6,2) len#_A(x1) = ((0,0),(1,0)) x1 + (5,6) fst_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (6,11) |0|_A() = (1,2) nil_A() = (2,1) from_A(x1) = ((1,0),(1,1)) x1 + (9,14) n__s_A(x1) = ((1,0),(0,0)) x1 + (0,6) add_A(x1,x2) = ((1,0),(1,1)) x1 + x2 + (5,5) len_A(x1) = ((1,0),(0,0)) x1 + (6,9) precedence: fst# = n__from > activate# = len# > add# = nil > |0| > s = cons = n__fst = activate = n__add = n__len = fst = from = n__s = add = len partial status: pi(fst#) = [] pi(s) = [] pi(cons) = [2] pi(activate#) = [] pi(n__fst) = [] pi(activate) = [] pi(n__from) = [1] pi(n__add) = [1, 2] pi(add#) = [] pi(n__len) = [] pi(len#) = [] pi(fst) = [] pi(|0|) = [] pi(nil) = [] pi(from) = [] pi(n__s) = [] pi(add) = [1, 2] pi(len) = [] The next rules are strictly ordered: p7 We remove them from the problem. -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p3: fst#(s(X),cons(Y,Z)) -> activate#(Z) p4: activate#(n__fst(X1,X2)) -> activate#(X2) p5: activate#(n__from(X)) -> activate#(X) p6: activate#(n__add(X1,X2)) -> add#(activate(X1),activate(X2)) p7: activate#(n__add(X1,X2)) -> activate#(X1) p8: activate#(n__add(X1,X2)) -> activate#(X2) p9: activate#(n__len(X)) -> len#(activate(X)) p10: len#(cons(X,Z)) -> activate#(Z) p11: activate#(n__len(X)) -> activate#(X) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The estimated dependency graph contains the following SCCs: {p1, p2, p3, p4, p5, p7, p8, p9, p10, p11} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__len(X)) -> activate#(X) p3: activate#(n__len(X)) -> len#(activate(X)) p4: len#(cons(X,Z)) -> activate#(Z) p5: activate#(n__add(X1,X2)) -> activate#(X2) p6: activate#(n__add(X1,X2)) -> activate#(X1) p7: activate#(n__from(X)) -> activate#(X) p8: activate#(n__fst(X1,X2)) -> activate#(X2) p9: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p10: fst#(s(X),cons(Y,Z)) -> activate#(Z) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18 Take the reduction pair: weighted path order base order: matrix interpretations: carrier: N^2 order: lexicographic order interpretations: fst#_A(x1,x2) = ((0,0),(1,0)) x1 + ((0,0),(1,0)) x2 + (2,5) s_A(x1) = x1 + (0,2) cons_A(x1,x2) = x2 + (0,1) activate#_A(x1) = ((0,0),(1,0)) x1 + (2,4) n__len_A(x1) = ((1,0),(0,0)) x1 + (3,0) len#_A(x1) = ((0,0),(1,0)) x1 + (2,5) activate_A(x1) = x1 + (0,9) n__add_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (1,5) n__from_A(x1) = ((1,0),(0,0)) x1 + (3,1) n__fst_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(1,0)) x2 + (3,3) fst_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(1,0)) x2 + (3,5) |0|_A() = (1,1) nil_A() = (2,6) from_A(x1) = ((1,0),(0,0)) x1 + (3,3) n__s_A(x1) = x1 add_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (1,8) len_A(x1) = ((1,0),(0,0)) x1 + (3,9) precedence: cons = n__len = activate = fst = nil = from = add = len > s = n__s > |0| > n__add = n__fst > fst# = activate# = len# > n__from partial status: pi(fst#) = [] pi(s) = [] pi(cons) = [] pi(activate#) = [] pi(n__len) = [] pi(len#) = [] pi(activate) = [] pi(n__add) = [] pi(n__from) = [] pi(n__fst) = [] pi(fst) = [] pi(|0|) = [] pi(nil) = [] pi(from) = [] pi(n__s) = [] pi(add) = [] pi(len) = [] The next rules are strictly ordered: p7 We remove them from the problem. -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__len(X)) -> activate#(X) p3: activate#(n__len(X)) -> len#(activate(X)) p4: len#(cons(X,Z)) -> activate#(Z) p5: activate#(n__add(X1,X2)) -> activate#(X2) p6: activate#(n__add(X1,X2)) -> activate#(X1) p7: activate#(n__fst(X1,X2)) -> activate#(X2) p8: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p9: fst#(s(X),cons(Y,Z)) -> activate#(Z) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The estimated dependency graph contains the following SCCs: {p1, p2, p3, p4, p5, p6, p7, p8, p9} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p3: fst#(s(X),cons(Y,Z)) -> activate#(Z) p4: activate#(n__fst(X1,X2)) -> activate#(X2) p5: activate#(n__add(X1,X2)) -> activate#(X1) p6: activate#(n__add(X1,X2)) -> activate#(X2) p7: activate#(n__len(X)) -> len#(activate(X)) p8: len#(cons(X,Z)) -> activate#(Z) p9: activate#(n__len(X)) -> activate#(X) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18 Take the reduction pair: weighted path order base order: matrix interpretations: carrier: N^2 order: lexicographic order interpretations: fst#_A(x1,x2) = ((1,0),(1,0)) x1 + ((1,0),(0,0)) x2 + (1,9) s_A(x1) = x1 + (0,2) cons_A(x1,x2) = ((1,0),(0,0)) x2 + (0,4) activate#_A(x1) = ((1,0),(0,0)) x1 + (0,8) n__fst_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (2,10) activate_A(x1) = ((1,0),(1,1)) x1 + (0,3) n__add_A(x1,x2) = ((1,0),(1,0)) x1 + ((1,0),(0,0)) x2 + (1,9) n__len_A(x1) = ((1,0),(0,0)) x1 + (2,5) len#_A(x1) = x1 + (1,3) fst_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (2,11) |0|_A() = (0,0) nil_A() = (0,12) from_A(x1) = (1,5) n__from_A(x1) = (1,4) n__s_A(x1) = x1 + (0,1) add_A(x1,x2) = ((1,0),(1,0)) x1 + ((1,0),(1,0)) x2 + (1,12) len_A(x1) = ((1,0),(0,0)) x1 + (2,8) precedence: |0| > len > fst > s = n__fst = n__s > add > activate = nil > from > n__from > n__add > cons = n__len > fst# = activate# = len# partial status: pi(fst#) = [] pi(s) = [] pi(cons) = [] pi(activate#) = [] pi(n__fst) = [] pi(activate) = [] pi(n__add) = [] pi(n__len) = [] pi(len#) = [] pi(fst) = [] pi(|0|) = [] pi(nil) = [] pi(from) = [] pi(n__from) = [] pi(n__s) = [] pi(add) = [] pi(len) = [] The next rules are strictly ordered: p9 We remove them from the problem. -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p3: fst#(s(X),cons(Y,Z)) -> activate#(Z) p4: activate#(n__fst(X1,X2)) -> activate#(X2) p5: activate#(n__add(X1,X2)) -> activate#(X1) p6: activate#(n__add(X1,X2)) -> activate#(X2) p7: activate#(n__len(X)) -> len#(activate(X)) p8: len#(cons(X,Z)) -> activate#(Z) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The estimated dependency graph contains the following SCCs: {p1, p2, p3, p4, p5, p6, p7, p8} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__len(X)) -> len#(activate(X)) p3: len#(cons(X,Z)) -> activate#(Z) p4: activate#(n__add(X1,X2)) -> activate#(X2) p5: activate#(n__add(X1,X2)) -> activate#(X1) p6: activate#(n__fst(X1,X2)) -> activate#(X2) p7: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p8: fst#(s(X),cons(Y,Z)) -> activate#(Z) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18 Take the reduction pair: weighted path order base order: matrix interpretations: carrier: N^2 order: lexicographic order interpretations: fst#_A(x1,x2) = x1 + ((1,0),(1,0)) x2 + (2,1) s_A(x1) = ((1,0),(0,0)) x1 + (0,6) cons_A(x1,x2) = ((1,0),(0,0)) x2 + (0,5) activate#_A(x1) = x1 + (1,4) n__len_A(x1) = ((1,0),(0,0)) x1 + (6,0) len#_A(x1) = ((1,0),(0,0)) x1 + (2,5) activate_A(x1) = ((1,0),(1,1)) x1 + (0,2) n__add_A(x1,x2) = x1 + ((1,0),(0,0)) x2 + (2,5) n__fst_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (5,0) fst_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (5,6) |0|_A() = (1,1) nil_A() = (1,7) from_A(x1) = (5,6) n__from_A(x1) = (5,0) n__s_A(x1) = ((1,0),(0,0)) x1 + (0,5) add_A(x1,x2) = x1 + ((1,0),(0,0)) x2 + (2,6) len_A(x1) = ((1,0),(0,0)) x1 + (6,7) precedence: s = activate = fst = from = add = len > n__from > n__s > cons = n__add > fst# > activate# = len# = n__fst = |0| > n__len = nil partial status: pi(fst#) = [1] pi(s) = [] pi(cons) = [] pi(activate#) = [] pi(n__len) = [] pi(len#) = [] pi(activate) = [] pi(n__add) = [1] pi(n__fst) = [] pi(fst) = [] pi(|0|) = [] pi(nil) = [] pi(from) = [] pi(n__from) = [] pi(n__s) = [] pi(add) = [] pi(len) = [] The next rules are strictly ordered: p8 We remove them from the problem. -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__len(X)) -> len#(activate(X)) p3: len#(cons(X,Z)) -> activate#(Z) p4: activate#(n__add(X1,X2)) -> activate#(X2) p5: activate#(n__add(X1,X2)) -> activate#(X1) p6: activate#(n__fst(X1,X2)) -> activate#(X2) p7: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The estimated dependency graph contains the following SCCs: {p1, p2, p3, p4, p5, p6, p7} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p3: activate#(n__fst(X1,X2)) -> activate#(X2) p4: activate#(n__add(X1,X2)) -> activate#(X1) p5: activate#(n__add(X1,X2)) -> activate#(X2) p6: activate#(n__len(X)) -> len#(activate(X)) p7: len#(cons(X,Z)) -> activate#(Z) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18 Take the reduction pair: weighted path order base order: matrix interpretations: carrier: N^2 order: lexicographic order interpretations: fst#_A(x1,x2) = ((1,0),(1,1)) x1 + (1,1) s_A(x1) = ((1,0),(1,0)) x1 + (0,2) cons_A(x1,x2) = x2 + (0,1) activate#_A(x1) = x1 n__fst_A(x1,x2) = ((1,0),(1,0)) x1 + ((1,0),(1,0)) x2 + (2,6) activate_A(x1) = ((1,0),(1,1)) x1 + (0,4) n__add_A(x1,x2) = x1 + ((1,0),(1,1)) x2 + (6,6) n__len_A(x1) = ((1,0),(1,0)) x1 + (2,6) len#_A(x1) = ((1,0),(1,1)) x1 + (1,1) fst_A(x1,x2) = ((1,0),(1,0)) x1 + ((1,0),(1,0)) x2 + (2,8) |0|_A() = (1,0) nil_A() = (0,1) from_A(x1) = ((1,0),(1,0)) x1 + (1,3) n__from_A(x1) = ((1,0),(0,0)) x1 + (1,1) n__s_A(x1) = ((1,0),(0,0)) x1 + (0,1) add_A(x1,x2) = x1 + ((1,0),(1,1)) x2 + (6,7) len_A(x1) = ((1,0),(1,0)) x1 + (2,7) precedence: n__add = n__len = nil = add = len > activate = fst > n__fst = |0| > n__from > from > cons > fst# = s = activate# = len# = n__s partial status: pi(fst#) = [] pi(s) = [] pi(cons) = [2] pi(activate#) = [1] pi(n__fst) = [] pi(activate) = [1] pi(n__add) = [] pi(n__len) = [] pi(len#) = [1] pi(fst) = [] pi(|0|) = [] pi(nil) = [] pi(from) = [] pi(n__from) = [] pi(n__s) = [] pi(add) = [1, 2] pi(len) = [] The next rules are strictly ordered: p6 We remove them from the problem. -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p3: activate#(n__fst(X1,X2)) -> activate#(X2) p4: activate#(n__add(X1,X2)) -> activate#(X1) p5: activate#(n__add(X1,X2)) -> activate#(X2) p6: len#(cons(X,Z)) -> activate#(Z) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The estimated dependency graph contains the following SCCs: {p1, p2, p3, p4, p5} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__add(X1,X2)) -> activate#(X2) p3: activate#(n__add(X1,X2)) -> activate#(X1) p4: activate#(n__fst(X1,X2)) -> activate#(X2) p5: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18 Take the reduction pair: weighted path order base order: matrix interpretations: carrier: N^2 order: lexicographic order interpretations: fst#_A(x1,x2) = ((1,0),(1,0)) x1 + ((0,0),(1,0)) x2 + (3,4) s_A(x1) = ((1,0),(0,0)) x1 + (0,4) cons_A(x1,x2) = ((1,0),(0,0)) x1 + (2,0) activate#_A(x1) = ((1,0),(1,0)) x1 + (3,5) n__add_A(x1,x2) = x1 + ((1,0),(0,0)) x2 + (4,0) n__fst_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (0,1) activate_A(x1) = ((1,0),(1,1)) x1 + (0,6) fst_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (0,3) |0|_A() = (0,1) nil_A() = (0,2) from_A(x1) = ((1,0),(1,0)) x1 + (3,2) n__from_A(x1) = ((1,0),(1,0)) x1 + (3,1) n__s_A(x1) = ((1,0),(0,0)) x1 + (0,3) add_A(x1,x2) = x1 + ((1,0),(0,0)) x2 + (4,3) len_A(x1) = (0,5) n__len_A(x1) = (0,0) precedence: fst# = s = cons = activate# = n__add = n__fst = activate = fst = |0| = nil = from = n__from = n__s = add = len = n__len partial status: pi(fst#) = [] pi(s) = [] pi(cons) = [] pi(activate#) = [] pi(n__add) = [] pi(n__fst) = [] pi(activate) = [] pi(fst) = [] pi(|0|) = [] pi(nil) = [] pi(from) = [] pi(n__from) = [] pi(n__s) = [] pi(add) = [] pi(len) = [] pi(n__len) = [] The next rules are strictly ordered: p2 We remove them from the problem. -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__add(X1,X2)) -> activate#(X1) p3: activate#(n__fst(X1,X2)) -> activate#(X2) p4: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The estimated dependency graph contains the following SCCs: {p1, p2, p3, p4} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p3: activate#(n__fst(X1,X2)) -> activate#(X2) p4: activate#(n__add(X1,X2)) -> activate#(X1) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18 Take the reduction pair: weighted path order base order: matrix interpretations: carrier: N^2 order: lexicographic order interpretations: fst#_A(x1,x2) = x1 + x2 + (0,2) s_A(x1) = ((1,0),(1,0)) x1 + (0,1) cons_A(x1,x2) = ((0,0),(1,0)) x1 + ((0,0),(1,0)) x2 + (4,2) activate#_A(x1) = ((1,0),(1,1)) x1 + (1,4) n__fst_A(x1,x2) = ((1,0),(1,1)) x1 + ((1,0),(1,1)) x2 + (0,3) activate_A(x1) = ((1,0),(1,1)) x1 n__add_A(x1,x2) = ((1,0),(1,1)) x1 + ((1,0),(1,1)) x2 + (2,5) fst_A(x1,x2) = ((1,0),(1,1)) x1 + ((1,0),(1,1)) x2 + (0,3) |0|_A() = (2,6) nil_A() = (1,1) from_A(x1) = ((0,0),(1,0)) x1 + (5,8) n__from_A(x1) = ((0,0),(1,0)) x1 + (5,7) n__s_A(x1) = ((1,0),(1,0)) x1 + (0,1) add_A(x1,x2) = ((1,0),(1,1)) x1 + ((1,0),(1,1)) x2 + (2,6) len_A(x1) = (3,5) n__len_A(x1) = (3,3) precedence: s = cons = activate = fst = from = n__from = n__s = add = len > n__fst > n__add = |0| > nil = n__len > fst# = activate# partial status: pi(fst#) = [1] pi(s) = [] pi(cons) = [] pi(activate#) = [1] pi(n__fst) = [1] pi(activate) = [] pi(n__add) = [1, 2] pi(fst) = [] pi(|0|) = [] pi(nil) = [] pi(from) = [] pi(n__from) = [] pi(n__s) = [] pi(add) = [] pi(len) = [] pi(n__len) = [] The next rules are strictly ordered: p3 We remove them from the problem. -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) p3: activate#(n__add(X1,X2)) -> activate#(X1) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The estimated dependency graph contains the following SCCs: {p1, p2, p3} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__add(X1,X2)) -> activate#(X1) p3: activate#(n__fst(X1,X2)) -> fst#(activate(X1),activate(X2)) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12, r13, r14, r15, r16, r17, r18 Take the reduction pair: weighted path order base order: matrix interpretations: carrier: N^2 order: lexicographic order interpretations: fst#_A(x1,x2) = ((1,0),(0,0)) x1 + x2 + (1,2) s_A(x1) = ((1,0),(1,1)) x1 + (0,3) cons_A(x1,x2) = ((0,0),(1,0)) x1 + (15,4) activate#_A(x1) = ((1,0),(1,1)) x1 + (0,2) n__add_A(x1,x2) = ((1,0),(0,0)) x1 + ((1,0),(0,0)) x2 + (1,1) n__fst_A(x1,x2) = ((1,0),(1,1)) x1 + ((1,0),(1,1)) x2 + (14,13) activate_A(x1) = ((1,0),(1,1)) x1 + (0,12) fst_A(x1,x2) = ((1,0),(1,1)) x1 + ((1,0),(1,1)) x2 + (14,14) |0|_A() = (0,0) nil_A() = (0,1) from_A(x1) = ((0,0),(1,0)) x1 + (16,5) n__from_A(x1) = ((0,0),(1,0)) x1 + (16,0) n__s_A(x1) = ((1,0),(1,1)) x1 + (0,1) add_A(x1,x2) = ((1,0),(1,0)) x1 + ((1,0),(1,0)) x2 + (1,6) len_A(x1) = (1,10) n__len_A(x1) = (1,5) precedence: n__add = activate = fst = |0| = add > fst# > s = cons = nil = from = n__from = n__s = len = n__len > activate# = n__fst partial status: pi(fst#) = [] pi(s) = [] pi(cons) = [] pi(activate#) = [1] pi(n__add) = [] pi(n__fst) = [2] pi(activate) = [] pi(fst) = [] pi(|0|) = [] pi(nil) = [] pi(from) = [] pi(n__from) = [] pi(n__s) = [] pi(add) = [] pi(len) = [] pi(n__len) = [] The next rules are strictly ordered: p3 We remove them from the problem. -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: fst#(s(X),cons(Y,Z)) -> activate#(X) p2: activate#(n__add(X1,X2)) -> activate#(X1) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The estimated dependency graph contains the following SCCs: {p2} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: activate#(n__add(X1,X2)) -> activate#(X1) and R consists of: r1: fst(|0|(),Z) -> nil() r2: fst(s(X),cons(Y,Z)) -> cons(Y,n__fst(activate(X),activate(Z))) r3: from(X) -> cons(X,n__from(n__s(X))) r4: add(|0|(),X) -> X r5: add(s(X),Y) -> s(n__add(activate(X),Y)) r6: len(nil()) -> |0|() r7: len(cons(X,Z)) -> s(n__len(activate(Z))) r8: fst(X1,X2) -> n__fst(X1,X2) r9: from(X) -> n__from(X) r10: s(X) -> n__s(X) r11: add(X1,X2) -> n__add(X1,X2) r12: len(X) -> n__len(X) r13: activate(n__fst(X1,X2)) -> fst(activate(X1),activate(X2)) r14: activate(n__from(X)) -> from(activate(X)) r15: activate(n__s(X)) -> s(X) r16: activate(n__add(X1,X2)) -> add(activate(X1),activate(X2)) r17: activate(n__len(X)) -> len(activate(X)) r18: activate(X) -> X The set of usable rules consists of (no rules) Take the monotone reduction pair: weighted path order base order: matrix interpretations: carrier: N^2 order: lexicographic order interpretations: activate#_A(x1) = ((1,0),(1,1)) x1 n__add_A(x1,x2) = ((1,0),(1,1)) x1 + x2 + (1,1) precedence: activate# > n__add partial status: pi(activate#) = [1] pi(n__add) = [1, 2] The next rules are strictly ordered: p1 We remove them from the problem. Then no dependency pair remains.