Certification Problem
Input (TPDB TRS_Standard/SK90/2.18)
The rewrite relation of the following TRS is considered.
sum(0) |
→ |
0 |
(1) |
sum(s(x)) |
→ |
+(sum(x),s(x)) |
(2) |
+(x,0) |
→ |
x |
(3) |
+(x,s(y)) |
→ |
s(+(x,y)) |
(4) |
Property / Task
Prove or disprove termination.Answer / Result
Yes.Proof (by NaTT @ termCOMP 2023)
1 Dependency Pair Transformation
The following set of initial dependency pairs has been identified.
sum#(s(x)) |
→ |
sum#(x) |
(5) |
+#(x,s(y)) |
→ |
+#(x,y) |
(6) |
sum#(s(x)) |
→ |
+#(sum(x),s(x)) |
(7) |
1.1 Dependency Graph Processor
The dependency pairs are split into 2
components.