YES We show the termination of the TRS R: f(a()) -> g(h(a())) h(g(x)) -> g(h(f(x))) k(x,h(x),a()) -> h(x) k(f(x),y,x) -> f(x) -- SCC decomposition. Consider the dependency pair problem (P, R), where P consists of p1: f#(a()) -> h#(a()) p2: h#(g(x)) -> h#(f(x)) p3: h#(g(x)) -> f#(x) and R consists of: r1: f(a()) -> g(h(a())) r2: h(g(x)) -> g(h(f(x))) r3: k(x,h(x),a()) -> h(x) r4: k(f(x),y,x) -> f(x) The estimated dependency graph contains the following SCCs: {p2} -- Reduction pair. Consider the dependency pair problem (P, R), where P consists of p1: h#(g(x)) -> h#(f(x)) and R consists of: r1: f(a()) -> g(h(a())) r2: h(g(x)) -> g(h(f(x))) r3: k(x,h(x),a()) -> h(x) r4: k(f(x),y,x) -> f(x) The set of usable rules consists of r1 Take the reduction pair: weighted path order base order: matrix interpretations: carrier: N^1 order: lexicographic order interpretations: h#_A(x1) = x1 + 1 g_A(x1) = x1 + 3 f_A(x1) = x1 + 1 a_A() = 5 h_A(x1) = 1 precedence: h# = g = a > f = h partial status: pi(h#) = [] pi(g) = [] pi(f) = [1] pi(a) = [] pi(h) = [] The next rules are strictly ordered: p1 We remove them from the problem. Then no dependency pair remains.