Certification Problem

Input (TPDB TRS_Standard/Zantema_05/z10)

The rewrite relation of the following TRS is considered.

a(lambda(x),y) lambda(a(x,p(1,a(y,t)))) (1)
a(p(x,y),z) p(a(x,z),a(y,z)) (2)
a(a(x,y),z) a(x,a(y,z)) (3)
a(id,x) x (4)
a(1,id) 1 (5)
a(t,id) t (6)
a(1,p(x,y)) x (7)
a(t,p(x,y)) y (8)

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

1.1 Dependency Graph Processor

The dependency pairs are split into 1 component.