Certification Problem
Input (TPDB SRS_Relative/Waldmann_19/random-221)
The relative rewrite relation R/S is considered where R is the following TRS
a(c(a(x1))) |
→ |
a(b(b(x1))) |
(1) |
a(c(a(x1))) |
→ |
a(c(b(x1))) |
(2) |
a(c(c(x1))) |
→ |
b(b(c(x1))) |
(3) |
b(c(a(x1))) |
→ |
c(b(a(x1))) |
(4) |
and S is the following TRS.
c(b(c(x1))) |
→ |
b(c(c(x1))) |
(5) |
b(b(b(x1))) |
→ |
c(a(c(x1))) |
(6) |
Property / Task
Prove or disprove termination.Answer / Result
Yes.Proof (by ttt2 @ termCOMP 2023)
1 String Reversal
Since only unary symbols occur, one can reverse all terms and obtains the TRS
a(c(a(x1))) |
→ |
b(b(a(x1))) |
(7) |
a(c(a(x1))) |
→ |
b(c(a(x1))) |
(8) |
c(c(a(x1))) |
→ |
c(b(b(x1))) |
(9) |
a(c(b(x1))) |
→ |
a(b(c(x1))) |
(10) |
c(b(c(x1))) |
→ |
c(c(b(x1))) |
(11) |
b(b(b(x1))) |
→ |
c(a(c(x1))) |
(6) |
1.1 Rule Removal
Using the
linear polynomial interpretation over the arctic semiring over the integers
[c(x1)] |
= |
0 · x1 +
-∞ |
[a(x1)] |
= |
8 · x1 +
-∞ |
[b(x1)] |
= |
4 · x1 +
-∞ |
all of the following rules can be deleted.
a(c(a(x1))) |
→ |
b(c(a(x1))) |
(8) |
b(b(b(x1))) |
→ |
c(a(c(x1))) |
(6) |
1.1.1 Rule Removal
Using the
linear polynomial interpretation over the arctic semiring over the integers
[c(x1)] |
= |
0 · x1 +
-∞ |
[a(x1)] |
= |
13 · x1 +
-∞ |
[b(x1)] |
= |
0 · x1 +
-∞ |
all of the following rules can be deleted.
a(c(a(x1))) |
→ |
b(b(a(x1))) |
(7) |
c(c(a(x1))) |
→ |
c(b(b(x1))) |
(9) |
1.1.1.1 Rule Removal
Using the
linear polynomial interpretation over (3 x 3)-matrices with strict dimension 1
over the naturals
[c(x1)] |
= |
· x1 +
|
[a(x1)] |
= |
· x1 +
|
[b(x1)] |
= |
· x1 +
|
all of the following rules can be deleted.
a(c(b(x1))) |
→ |
a(b(c(x1))) |
(10) |
1.1.1.1.1 R is empty
There are no rules in the TRS. Hence, it is terminating.