We consider the TRS containing the following rules:
| a(b(c(x))) | → | c(c(c(b(b(b(a(a(a(x))))))))) | (1) |
| c(b(x)) | → | a(a(a(x))) | (2) |
| a(x) | → | x | (3) |
| b(x) | → | x | (4) |
| c(x) | → | x | (5) |
The underlying signature is as follows:
{a/1, b/1, c/1}To prove that the TRS is (non-)confluent, we show (non-)confluence of the following modified system:
| a(b(c(x))) | → | c(c(c(b(b(b(a(a(a(x))))))))) | (1) |
| a(x) | → | x | (3) |
| b(x) | → | x | (4) |
| c(x) | → | x | (5) |
All redundant rules that were added or removed can be simulated in 4 steps .
Confluence is proven using the following terminating critical-pair-closing-system R:
| c(x) | → | x | (5) |
| b(x) | → | x | (4) |
| a(x) | → | x | (3) |