Certification Problem
Input (TPDB TRS_Standard/Various_04/24)
The rewrite relation of the following TRS is considered.
max(L(x)) |
→ |
x |
(1) |
max(N(L(0),L(y))) |
→ |
y |
(2) |
max(N(L(s(x)),L(s(y)))) |
→ |
s(max(N(L(x),L(y)))) |
(3) |
max(N(L(x),N(y,z))) |
→ |
max(N(L(x),L(max(N(y,z))))) |
(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.
max#(N(L(x),N(y,z))) |
→ |
max#(N(L(x),L(max(N(y,z))))) |
(5) |
max#(N(L(x),N(y,z))) |
→ |
max#(N(y,z)) |
(6) |
max#(N(L(s(x)),L(s(y)))) |
→ |
max#(N(L(x),L(y))) |
(7) |
1.1 Dependency Graph Processor
The dependency pairs are split into 2
components.