YES We show the termination of the TRS R: f(|0|()) -> true() f(|1|()) -> false() f(s(x)) -> f(x) if(true(),x,y) -> x if(false(),x,y) -> y g(s(x),s(y)) -> if(f(x),s(x),s(y)) g(x,c(y)) -> g(x,g(s(c(y)),y)) -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: f#(s(x)) -> f#(x) p2: g#(s(x),s(y)) -> if#(f(x),s(x),s(y)) p3: g#(s(x),s(y)) -> f#(x) p4: g#(x,c(y)) -> g#(x,g(s(c(y)),y)) p5: g#(x,c(y)) -> g#(s(c(y)),y) and R consists of: r1: f(|0|()) -> true() r2: f(|1|()) -> false() r3: f(s(x)) -> f(x) r4: if(true(),x,y) -> x r5: if(false(),x,y) -> y r6: g(s(x),s(y)) -> if(f(x),s(x),s(y)) r7: g(x,c(y)) -> g(x,g(s(c(y)),y)) The estimated dependency graph contains the following SCCs: {p4, p5} {p1} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: g#(x,c(y)) -> g#(s(c(y)),y) p2: g#(x,c(y)) -> g#(x,g(s(c(y)),y)) and R consists of: r1: f(|0|()) -> true() r2: f(|1|()) -> false() r3: f(s(x)) -> f(x) r4: if(true(),x,y) -> x r5: if(false(),x,y) -> y r6: g(s(x),s(y)) -> if(f(x),s(x),s(y)) r7: g(x,c(y)) -> g(x,g(s(c(y)),y)) The set of usable rules consists of r1, r2, r3, r4, r5, r6, r7 Take the reduction pair: lexicographic path order with precedence: precedence: g# > c > g > if > f > false > |1| > true > |0| > s argument filter: pi(g#) = 2 pi(c) = [1] pi(s) = [] pi(g) = [] pi(f) = [] pi(|0|) = [] pi(true) = [] pi(|1|) = [] pi(false) = [] pi(if) = [1, 2, 3] The next rules are strictly ordered: p1, p2 We remove them from the problem. Then no dependency pair remains. -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: f#(s(x)) -> f#(x) and R consists of: r1: f(|0|()) -> true() r2: f(|1|()) -> false() r3: f(s(x)) -> f(x) r4: if(true(),x,y) -> x r5: if(false(),x,y) -> y r6: g(s(x),s(y)) -> if(f(x),s(x),s(y)) r7: g(x,c(y)) -> g(x,g(s(c(y)),y)) The set of usable rules consists of (no rules) Take the monotone reduction pair: lexicographic path order with precedence: precedence: s > f# argument filter: pi(f#) = [1] pi(s) = [1] The next rules are strictly ordered: p1 r1, r2, r3, r4, r5, r6, r7 We remove them from the problem. Then no dependency pair remains.