Term Rewriting System R: [x, y] f(c(s(x), y)) -> f(c(x, s(y))) g(c(x, s(y))) -> g(c(s(x), y)) g(s(f(x))) -> g(f(x)) Innermost Termination of R to be shown. R contains the following Dependency Pairs: G(c(x, s(y))) -> G(c(s(x), y)) G(s(f(x))) -> G(f(x)) F(c(s(x), y)) -> F(c(x, s(y))) Furthermore, R contains two SCCs. SCC1: F(c(s(x), y)) -> F(c(x, s(y))) By using a polynomial ordering, at least one Dependency Pair of this SCC can be strictly oriented. No rules need to be oriented. Used ordering: Polynomial ordering with Polynomial interpretation: POL(s(x_1)) = 1 + x_1 POL(F(x_1)) = 1 + x_1 POL(c(x_1, x_2)) = x_1 resulting in no subcycles. SCC2: G(c(x, s(y))) -> G(c(s(x), y)) By using a polynomial ordering, at least one Dependency Pair of this SCC can be strictly oriented. No rules need to be oriented. Used ordering: Polynomial ordering with Polynomial interpretation: POL(G(x_1)) = x_1 POL(s(x_1)) = 1 + x_1 POL(c(x_1, x_2)) = 1 + x_2 resulting in no subcycles. Innermost Termination of R successfully shown. Duration: 0.489 seconds.