Certification Problem
Input (COPS 981)
We consider the TRS containing the following rules:
a(a(x)) |
→ |
a(b(b(c(x)))) |
(1) |
b(a(x)) |
→ |
x |
(2) |
c(b(x)) |
→ |
a(c(x)) |
(3) |
The underlying signature is as follows:
{a/1, b/1, c/1}Property / Task
Prove or disprove confluence.Answer / Result
No.Proof (by csi @ CoCo 2020)
1 Non-Joinable Fork
The system is not confluent due to the following forking derivations.
t0
|
= |
c(b(a(x21))) |
|
→
|
c(x21) |
|
= |
t1
|
t0
|
= |
c(b(a(x21))) |
|
→
|
a(c(a(x21))) |
|
= |
t1
|
The two resulting terms cannot be joined for the following reason:
- When applying the cap-function on both terms (where variables may be treated like constants)
then the resulting terms do not unify.