We consider two TRSs R and S where R contains the rules
+(0,0) | → | 0 | (1) |
+(s(x),y) | → | s(+(x,y)) | (2) |
+(x,s(y)) | → | s(+(y,x)) | (3) |
and S contains the following rules:
+(0,y) | → | y | (4) |
+(s(x),y) | → | s(+(y,x)) | (5) |
+(x,y) | → | +(y,x) | (6) |
The underlying signature is as follows:
{+/2, 0/0, s/1}