Certification Problem

Input (TPDB TRS_Standard/AProVE_07/wiehe03)

The rewrite relation of the following TRS is considered.

app(nil,k) k (1)
app(l,nil) l (2)
app(cons(x,l),k) cons(x,app(l,k)) (3)
sum(cons(x,nil)) cons(x,nil) (4)
sum(cons(x,cons(y,l))) sum(cons(plus(x,y),l)) (5)
sum(app(l,cons(x,cons(y,k)))) sum(app(l,sum(cons(x,cons(y,k))))) (6)
sum(plus(cons(0,x),cons(y,l))) pred(sum(cons(s(x),cons(y,l)))) (7)
pred(cons(s(x),nil)) cons(x,nil) (8)
plus(s(x),s(y)) s(s(plus(if(gt(x,y),x,y),if(not(gt(x,y)),id(x),id(y))))) (9)
plus(s(x),x) plus(if(gt(x,x),id(x),id(x)),s(x)) (10)
plus(zero,y) y (11)
plus(id(x),s(y)) s(plus(x,if(gt(s(y),y),y,s(y)))) (12)
id(x) x (13)
if(true,x,y) x (14)
if(false,x,y) y (15)
not(x) if(x,false,true) (16)
gt(s(x),zero) true (17)
gt(zero,y) false (18)
gt(s(x),s(y)) gt(x,y) (19)

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.
sum#(app(l,cons(x,cons(y,k)))) app#(l,sum(cons(x,cons(y,k)))) (20)
plus#(s(x),s(y)) gt#(x,y) (21)
plus#(id(x),s(y)) if#(gt(s(y),y),y,s(y)) (22)
plus#(s(x),s(y)) gt#(x,y) (21)
plus#(s(x),s(y)) id#(y) (23)
gt#(s(x),s(y)) gt#(x,y) (24)
sum#(cons(x,cons(y,l))) plus#(x,y) (25)
plus#(id(x),s(y)) plus#(x,if(gt(s(y),y),y,s(y))) (26)
plus#(id(x),s(y)) gt#(s(y),y) (27)
not#(x) if#(x,false,true) (28)
plus#(s(x),x) id#(x) (29)
plus#(s(x),s(y)) if#(not(gt(x,y)),id(x),id(y)) (30)
plus#(s(x),s(y)) id#(x) (31)
plus#(s(x),s(y)) if#(gt(x,y),x,y) (32)
sum#(cons(x,cons(y,l))) sum#(cons(plus(x,y),l)) (33)
plus#(s(x),x) plus#(if(gt(x,x),id(x),id(x)),s(x)) (34)
plus#(s(x),x) gt#(x,x) (35)
app#(cons(x,l),k) app#(l,k) (36)
plus#(s(x),x) id#(x) (29)
sum#(plus(cons(0,x),cons(y,l))) sum#(cons(s(x),cons(y,l))) (37)
sum#(app(l,cons(x,cons(y,k)))) sum#(cons(x,cons(y,k))) (38)
sum#(app(l,cons(x,cons(y,k)))) sum#(app(l,sum(cons(x,cons(y,k))))) (39)
plus#(s(x),s(y)) not#(gt(x,y)) (40)
sum#(plus(cons(0,x),cons(y,l))) pred#(sum(cons(s(x),cons(y,l)))) (41)
plus#(s(x),s(y)) plus#(if(gt(x,y),x,y),if(not(gt(x,y)),id(x),id(y))) (42)
plus#(s(x),x) if#(gt(x,x),id(x),id(x)) (43)

1.1 Dependency Graph Processor

The dependency pairs are split into 5 components.