YES We show the termination of the TRS R: is_empty(nil()) -> true() is_empty(cons(x,l)) -> false() hd(cons(x,l)) -> x tl(cons(x,l)) -> l append(l1,l2) -> ifappend(l1,l2,l1) ifappend(l1,l2,nil()) -> l2 ifappend(l1,l2,cons(x,l)) -> cons(x,append(l,l2)) -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: append#(l1,l2) -> ifappend#(l1,l2,l1) p2: ifappend#(l1,l2,cons(x,l)) -> append#(l,l2) and R consists of: r1: is_empty(nil()) -> true() r2: is_empty(cons(x,l)) -> false() r3: hd(cons(x,l)) -> x r4: tl(cons(x,l)) -> l r5: append(l1,l2) -> ifappend(l1,l2,l1) r6: ifappend(l1,l2,nil()) -> l2 r7: ifappend(l1,l2,cons(x,l)) -> cons(x,append(l,l2)) The estimated dependency graph contains the following SCCs: {p1, p2} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: append#(l1,l2) -> ifappend#(l1,l2,l1) p2: ifappend#(l1,l2,cons(x,l)) -> append#(l,l2) and R consists of: r1: is_empty(nil()) -> true() r2: is_empty(cons(x,l)) -> false() r3: hd(cons(x,l)) -> x r4: tl(cons(x,l)) -> l r5: append(l1,l2) -> ifappend(l1,l2,l1) r6: ifappend(l1,l2,nil()) -> l2 r7: ifappend(l1,l2,cons(x,l)) -> cons(x,append(l,l2)) The set of usable rules consists of (no rules) Take the reduction pair: max/plus interpretations on natural numbers: append#_A(x1,x2) = x1 + 3 ifappend#_A(x1,x2,x3) = max{x1 + 2, x3 + 3} cons_A(x1,x2) = max{x1 - 2, x2 + 1} 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: append#(l1,l2) -> ifappend#(l1,l2,l1) and R consists of: r1: is_empty(nil()) -> true() r2: is_empty(cons(x,l)) -> false() r3: hd(cons(x,l)) -> x r4: tl(cons(x,l)) -> l r5: append(l1,l2) -> ifappend(l1,l2,l1) r6: ifappend(l1,l2,nil()) -> l2 r7: ifappend(l1,l2,cons(x,l)) -> cons(x,append(l,l2)) The estimated dependency graph contains the following SCCs: (no SCCs)