We consider the TRS containing the following rules:
| +(0,y) | → | y | (1) |
| +(s(x),y) | → | s(+(x,y)) | (2) |
| *(0,y) | → | 0 | (3) |
| *(s(x),y) | → | +(*(x,y),y) | (4) |
| *(x,s(y)) | → | +(x,*(x,y)) | (5) |
The underlying signature is as follows:
{+/2, 0/0, s/1, */2}| t0 | = | *(s(c_1),s(c_2)) |
| → | +(*(c_1,s(c_2)),s(c_2)) | |
| → | +(+(c_1,*(c_1,c_2)),s(c_2)) | |
| = | t2 |
| t0 | = | *(s(c_1),s(c_2)) |
| → | +(s(c_1),*(s(c_1),c_2)) | |
| → | s(+(c_1,*(s(c_1),c_2))) | |
| = | t2 |
| π(*) | = | [2] |
| π(+) | = | [2] |
| π(0) | = | [] |
| π(s) | = | [] |
| π(c_1) | = | [] |
| π(c_2) | = | [] |