Certification Problem

Input (TPDB TRS_Standard/Transformed_CSR_04/Ex2_Luc03b_L)

The rewrite relation of the following TRS is considered.

fst(0,Z) nil (1)
fst(s,cons(Y)) cons(Y) (2)
from(X) cons(X) (3)
add(0,X) X (4)
add(s,Y) s (5)
len(nil) 0 (6)
len(cons(X)) s (7)

Property / Task

Prove or disprove termination.

Answer / Result

Yes.

Proof (by NaTT @ termCOMP 2023)

1 Dependency Pair Transformation

The set of initial dependency pairs is empty, and hence the TRS is terminating.