We consider the TRS containing the following rules:
-(+(x,-(x))) | → | 0 | (1) |
+(x,-(x)) | → | 0 | (2) |
0 | → | -(0) | (3) |
The underlying signature is as follows:
{-/1, +/2, x/0, 0/0}To prove that the TRS is (non-)confluent, we show (non-)confluence of the following modified system:
0 | → | -(0) | (3) |
+(x,-(x)) | → | 0 | (2) |
-(+(x,-(x))) | → | 0 | (1) |
0 | → | -(-(0)) | (4) |
+(x,-(x)) | → | -(0) | (5) |
-(+(x,-(x))) | → | -(0) | (6) |
All redundant rules that were added or removed can be simulated in 2 steps .