Certification Problem

Input (TPDB TRS_Standard/Zantema_05/z29)

The rewrite relation of the following TRS is considered.

a(lambda(x),y) lambda(a(x,1)) (1)
a(lambda(x),y) lambda(a(x,a(y,t))) (2)
a(a(x,y),z) a(x,a(y,z)) (3)
lambda(x) x (4)
a(x,y) x (5)
a(x,y) y (6)

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.
a#(lambda(x),y) a#(x,a(y,t)) (7)
a#(lambda(x),y) lambda#(a(x,1)) (8)
a#(lambda(x),y) a#(x,1) (9)
a#(a(x,y),z) a#(y,z) (10)
a#(lambda(x),y) a#(y,t) (11)
a#(lambda(x),y) lambda#(a(x,a(y,t))) (12)
a#(a(x,y),z) a#(x,a(y,z)) (13)

1.1 Dependency Graph Processor

The dependency pairs are split into 1 component.