Term Rewriting System R: [x, y, z] f(0, 1, g(x, y), z) -> f(g(x, y), g(x, y), g(x, y), h(x)) g(0, 1) -> 0 g(0, 1) -> 1 h(g(x, y)) -> h(x) Innermost Termination of R to be shown. R contains the following Dependency Pairs: H(g(x, y)) -> H(x) F(0, 1, g(x, y), z) -> F(g(x, y), g(x, y), g(x, y), h(x)) F(0, 1, g(x, y), z) -> H(x) Furthermore, R contains one SCC. SCC1: H(g(x, y)) -> H(x) Removing rules from R by ordering and analyzing Dependency Pairs, Usable Rules, and Usable Equations. This is possible by using the following (C_E-compatible) Polynomial ordering. Polynomial interpretation: POL(g(x_1, x_2)) = 1 + x_1 + x_2 POL(H(x_1)) = 1 + x_1 The following Dependency Pairs can be deleted: H(g(x, y)) -> H(x) This transformation is resulting in no new subcycles. Innermost Termination of R successfully shown. Duration: 0.427 seconds.