Certification Problem

Input (TPDB TRS_Standard/Applicative_05/Ex4MapList)

The rewrite relation of the following TRS is considered.

app(app(fmap,fnil),x) nil (1)
app(app(fmap,app(app(fcons,f),t)),x) app(app(cons,app(f,x)),app(app(fmap,t),x)) (2)

Property / Task

Prove or disprove termination.

Answer / Result

Yes.

Proof (by ttt2 @ termCOMP 2023)

1 Dependency Pair Transformation

The following set of initial dependency pairs has been identified.
app#(app(fmap,app(app(fcons,f),t)),x) app#(fmap,t) (3)
app#(app(fmap,app(app(fcons,f),t)),x) app#(app(fmap,t),x) (4)
app#(app(fmap,app(app(fcons,f),t)),x) app#(f,x) (5)
app#(app(fmap,app(app(fcons,f),t)),x) app#(cons,app(f,x)) (6)
app#(app(fmap,app(app(fcons,f),t)),x) app#(app(cons,app(f,x)),app(app(fmap,t),x)) (7)

1.1 Dependency Graph Processor

The dependency pairs are split into 1 component.