Certification Problem

Input (TPDB TRS_Standard/SK90/2.41)

The rewrite relation of the following TRS is considered.

norm(nil) 0 (1)
norm(g(x,y)) s(norm(x)) (2)
f(x,nil) g(nil,x) (3)
f(x,g(y,z)) g(f(x,y),z) (4)
rem(nil,y) nil (5)
rem(g(x,y),0) g(x,y) (6)
rem(g(x,y),s(z)) rem(x,z) (7)

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.
rem#(g(x,y),s(z)) rem#(x,z) (8)
f#(x,g(y,z)) f#(x,y) (9)
norm#(g(x,y)) norm#(x) (10)

1.1 Dependency Graph Processor

The dependency pairs are split into 3 components.