Certification Problem
Input (TPDB SRS_Standard/Zantema_06/beans4)
The rewrite relation of the following TRS is considered.
b(a(a(x1))) |
→ |
a(b(c(x1))) |
(1) |
c(a(x1)) |
→ |
a(c(x1)) |
(2) |
b(c(a(x1))) |
→ |
a(b(c(x1))) |
(3) |
c(b(x1)) |
→ |
b(a(x1)) |
(4) |
a(c(b(x1))) |
→ |
c(b(a(x1))) |
(5) |
Property / Task
Prove or disprove termination.Answer / Result
Yes.Proof (by AProVE @ termCOMP 2023)
1 String Reversal
Since only unary symbols occur, one can reverse all terms and obtains the TRS
a(a(b(x1))) |
→ |
c(b(a(x1))) |
(6) |
a(c(x1)) |
→ |
c(a(x1)) |
(7) |
a(c(b(x1))) |
→ |
c(b(a(x1))) |
(5) |
b(c(x1)) |
→ |
a(b(x1)) |
(8) |
b(c(a(x1))) |
→ |
a(b(c(x1))) |
(3) |
1.1 Dependency Pair Transformation
The following set of initial dependency pairs has been identified.
a#(a(b(x1))) |
→ |
b#(a(x1)) |
(9) |
a#(a(b(x1))) |
→ |
a#(x1) |
(10) |
a#(c(x1)) |
→ |
a#(x1) |
(11) |
a#(c(b(x1))) |
→ |
b#(a(x1)) |
(12) |
a#(c(b(x1))) |
→ |
a#(x1) |
(13) |
b#(c(x1)) |
→ |
a#(b(x1)) |
(14) |
b#(c(x1)) |
→ |
b#(x1) |
(15) |
b#(c(a(x1))) |
→ |
a#(b(c(x1))) |
(16) |
b#(c(a(x1))) |
→ |
b#(c(x1)) |
(17) |
1.1.1 Monotonic Reduction Pair Processor
Using the linear polynomial interpretation over the naturals
[a(x1)] |
= |
2 + 2 · x1
|
[b(x1)] |
= |
1 · x1
|
[c(x1)] |
= |
2 + 2 · x1
|
[a#(x1)] |
= |
2 + 3 · x1
|
[b#(x1)] |
= |
3 + 2 · x1
|
the
pairs
a#(a(b(x1))) |
→ |
b#(a(x1)) |
(9) |
a#(a(b(x1))) |
→ |
a#(x1) |
(10) |
a#(c(x1)) |
→ |
a#(x1) |
(11) |
a#(c(b(x1))) |
→ |
b#(a(x1)) |
(12) |
a#(c(b(x1))) |
→ |
a#(x1) |
(13) |
b#(c(x1)) |
→ |
a#(b(x1)) |
(14) |
b#(c(x1)) |
→ |
b#(x1) |
(15) |
b#(c(a(x1))) |
→ |
a#(b(c(x1))) |
(16) |
b#(c(a(x1))) |
→ |
b#(c(x1)) |
(17) |
and
no rules
could be deleted.
1.1.1.1 P is empty
There are no pairs anymore.