Certification Problem

Input (TPDB TRS_Standard/AotoYamada_05/024)

The rewrite relation of the following TRS is considered.

app(app(map,f),nil) nil (1)
app(app(map,f),app(app(cons,x),xs)) app(app(cons,app(f,x)),app(app(map,f),xs)) (2)

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.
app#(app(map,f),app(app(cons,x),xs)) app#(cons,app(f,x)) (3)
app#(app(map,f),app(app(cons,x),xs)) app#(f,x) (4)
app#(app(map,f),app(app(cons,x),xs)) app#(app(cons,app(f,x)),app(app(map,f),xs)) (5)
app#(app(map,f),app(app(cons,x),xs)) app#(app(map,f),xs) (6)

1.1 Dependency Graph Processor

The dependency pairs are split into 1 component.