Certification Problem
Input (TPDB SRS_Standard/Zantema_04/z081)
The rewrite relation of the following TRS is considered.
b(c(a(x1))) |
→ |
a(b(x1)) |
(1) |
b(b(b(x1))) |
→ |
c(a(c(x1))) |
(2) |
c(d(x1)) |
→ |
d(c(x1)) |
(3) |
c(d(b(x1))) |
→ |
d(c(c(x1))) |
(4) |
d(c(x1)) |
→ |
b(b(b(x1))) |
(5) |
c(b(x1)) |
→ |
d(a(x1)) |
(6) |
d(b(c(x1))) |
→ |
a(a(x1)) |
(7) |
d(a(x1)) |
→ |
b(x1) |
(8) |
Property / Task
Prove or disprove termination.Answer / Result
Yes.Proof (by AProVE @ termCOMP 2023)
1 Rule Removal
Using the
linear polynomial interpretation over the naturals
[b(x1)] |
= |
1 · x1 + 1 |
[c(x1)] |
= |
1 · x1 + 1 |
[a(x1)] |
= |
1 · x1
|
[d(x1)] |
= |
1 · x1 + 2 |
all of the following rules can be deleted.
b(c(a(x1))) |
→ |
a(b(x1)) |
(1) |
b(b(b(x1))) |
→ |
c(a(c(x1))) |
(2) |
d(b(c(x1))) |
→ |
a(a(x1)) |
(7) |
d(a(x1)) |
→ |
b(x1) |
(8) |
1.1 Dependency Pair Transformation
The following set of initial dependency pairs has been identified.
c#(d(x1)) |
→ |
d#(c(x1)) |
(9) |
c#(d(x1)) |
→ |
c#(x1) |
(10) |
c#(d(b(x1))) |
→ |
d#(c(c(x1))) |
(11) |
c#(d(b(x1))) |
→ |
c#(c(x1)) |
(12) |
c#(d(b(x1))) |
→ |
c#(x1) |
(13) |
c#(b(x1)) |
→ |
d#(a(x1)) |
(14) |
1.1.1 Dependency Graph Processor
The dependency pairs are split into 1
component.