Certification Problem

Input (TPDB TRS_Standard/Der95/08)

The rewrite relation of the following TRS is considered.

D(t) 1 (1)
D(constant) 0 (2)
D(+(x,y)) +(D(x),D(y)) (3)
D(*(x,y)) +(*(y,D(x)),*(x,D(y))) (4)
D(-(x,y)) -(D(x),D(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.
D#(-(x,y)) D#(y) (6)
D#(*(x,y)) D#(y) (7)
D#(*(x,y)) D#(x) (8)
D#(+(x,y)) D#(x) (9)
D#(-(x,y)) D#(x) (10)
D#(+(x,y)) D#(y) (11)

1.1 Dependency Graph Processor

The dependency pairs are split into 1 component.