Term Rewriting System R: [x] sum(0) -> 0 sum(s(x)) -> +(sqr(s(x)), sum(x)) sum(s(x)) -> +(*(s(x), s(x)), sum(x)) sqr(x) -> *(x, x) Termination of R to be shown. R contains the following Dependency Pairs: SUM(s(x)) -> SQR(s(x)) SUM(s(x)) -> SUM(x) Furthermore, R contains one SCC. SCC1: SUM(s(x)) -> SUM(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(s(x_1)) = 1 + x_1 POL(SUM(x_1)) = 1 + x_1 The following Dependency Pairs can be deleted: SUM(s(x)) -> SUM(x) This transformation is resulting in no new subcycles. Termination of R successfully shown. Duration: 0.483 seconds.