Consider the TRS R consisting of the rewrite rules 1: from(X) -> cons(X,n__from(n__s(X))) 2: sel(0,cons(X,Y)) -> X 3: sel(s(X),cons(Y,Z)) -> sel(X,activate(Z)) 4: from(X) -> n__from(X) 5: s(X) -> n__s(X) 6: activate(n__from(X)) -> from(activate(X)) 7: activate(n__s(X)) -> s(activate(X)) 8: activate(X) -> X There are 6 dependency pairs: 9: SEL(s(X),cons(Y,Z)) -> SEL(X,activate(Z)) 10: SEL(s(X),cons(Y,Z)) -> ACTIVATE(Z) 11: ACTIVATE(n__from(X)) -> FROM(activate(X)) 12: ACTIVATE(n__from(X)) -> ACTIVATE(X) 13: ACTIVATE(n__s(X)) -> S(activate(X)) 14: ACTIVATE(n__s(X)) -> ACTIVATE(X) The approximated dependency graph contains 2 SCCs: {12,14} and {9}. - Consider the SCC {12,14}. There are no usable rules. By taking the polynomial interpretation [ACTIVATE](x) = [n__from](x) = [n__s](x) = x + 1, the rules in {12,14} are strictly decreasing. - Consider the SCC {9}. The usable rules are {1,4-8}. By taking the polynomial interpretation [activate](x) = [cons](x,y) = [from](x) = [n__from](x) = [n__s](x) = [s](x) = [SEL](x,y) = x + 1, the rules in {1,4-7} are weakly decreasing and the rules in {8,9} are strictly decreasing. Hence the TRS is terminating.