The rewrite relation of the following TRS is considered.
plus(0,x) | → | x | (1) |
plus(s(x),y) | → | s(plus(p(s(x)),y)) | (2) |
times(0,y) | → | 0 | (3) |
times(s(x),y) | → | plus(y,times(p(s(x)),y)) | (4) |
p(s(0)) | → | 0 | (5) |
p(s(s(x))) | → | s(p(s(x))) | (6) |
fac(0,x) | → | x | (7) |
fac(s(x),y) | → | fac(p(s(x)),times(s(x),y)) | (8) |
factorial(x) | → | fac(x,s(0)) | (9) |
plus#(s(x),y) | → | p#(s(x)) | (10) |
plus#(s(x),y) | → | plus#(p(s(x)),y) | (11) |
times#(s(x),y) | → | p#(s(x)) | (12) |
times#(s(x),y) | → | times#(p(s(x)),y) | (13) |
times#(s(x),y) | → | plus#(y,times(p(s(x)),y)) | (14) |
p#(s(s(x))) | → | p#(s(x)) | (15) |
fac#(s(x),y) | → | times#(s(x),y) | (16) |
fac#(s(x),y) | → | p#(s(x)) | (17) |
fac#(s(x),y) | → | fac#(p(s(x)),times(s(x),y)) | (18) |
factorial#(x) | → | fac#(x,s(0)) | (19) |
The dependency pairs are split into 4 components.
fac#(s(x),y) | → | fac#(p(s(x)),times(s(x),y)) | (18) |
[times(x1, x2)] | = | 0 · x1 + 0 · x2 + 0 |
[plus(x1, x2)] | = | -1 · x1 + -∞ · x2 + 4 |
[p(x1)] | = | -1 · x1 + 0 |
[fac#(x1, x2)] | = | 0 · x1 + -∞ · x2 + -16 |
[0] | = | 0 |
[s(x1)] | = | 2 · x1 + 1 |
p(s(0)) | → | 0 | (5) |
p(s(s(x))) | → | s(p(s(x))) | (6) |
fac#(s(x),y) | → | fac#(p(s(x)),times(s(x),y)) | (18) |
There are no pairs anymore.
times#(s(x),y) | → | times#(p(s(x)),y) | (13) |
[p(x1)] | = |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[0] | = |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[times#(x1, x2)] | = |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[s(x1)] | = |
|
p(s(0)) | → | 0 | (5) |
p(s(s(x))) | → | s(p(s(x))) | (6) |
times#(s(x),y) | → | times#(p(s(x)),y) | (13) |
There are no pairs anymore.
plus#(s(x),y) | → | plus#(p(s(x)),y) | (11) |
[p(x1)] | = |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[0] | = |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[plus#(x1, x2)] | = |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[s(x1)] | = |
|
p(s(0)) | → | 0 | (5) |
p(s(s(x))) | → | s(p(s(x))) | (6) |
plus#(s(x),y) | → | plus#(p(s(x)),y) | (11) |
There are no pairs anymore.
p#(s(s(x))) | → | p#(s(x)) | (15) |
Using size-change termination in combination with the subterm criterion one obtains the following initial size-change graphs.
p#(s(s(x))) | → | p#(s(x)) | (15) |
1 | > | 1 |
As there is no critical graph in the transitive closure, there are no infinite chains.