Certification Problem
Input (TPDB TRS_Standard/SK90/4.16)
The rewrite relation of the following TRS is considered.
f(0) |
→ |
s(0) |
(1) |
f(s(0)) |
→ |
s(s(0)) |
(2) |
f(s(0)) |
→ |
*(s(s(0)),f(0)) |
(3) |
f(+(x,s(0))) |
→ |
+(s(s(0)),f(x)) |
(4) |
f(+(x,y)) |
→ |
*(f(x),f(y)) |
(5) |
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.
f#(+(x,y)) |
→ |
f#(y) |
(6) |
f#(s(0)) |
→ |
f#(0) |
(7) |
f#(+(x,y)) |
→ |
f#(x) |
(8) |
f#(+(x,s(0))) |
→ |
f#(x) |
(9) |
1.1 Dependency Graph Processor
The dependency pairs are split into 1
component.