Certification Problem

Input (TPDB TRS_Standard/Transformed_CSR_04/PEANO_nosorts-noand_FR)

The rewrite relation of the following TRS is considered.

U11(tt,M,N) U12(tt,activate(M),activate(N)) (1)
U12(tt,M,N) s(plus(activate(N),activate(M))) (2)
plus(N,0) N (3)
plus(N,s(M)) U11(tt,M,N) (4)
activate(X) X (5)

Property / Task

Prove or disprove termination.

Answer / Result

Yes.

Proof (by ttt2 @ termCOMP 2023)

1 Rule Removal

Using the Knuth Bendix order with w0 = 1 and the following precedence and weight functions
prec(0) = 1 weight(0) = 2
prec(s) = 0 weight(s) = 3
prec(plus) = 4 weight(plus) = 4
prec(U12) = 2 weight(U12) = 6
prec(activate) = 7 weight(activate) = 0
prec(U11) = 3 weight(U11) = 6
prec(tt) = 5 weight(tt) = 1
all of the following rules can be deleted.
U11(tt,M,N) U12(tt,activate(M),activate(N)) (1)
U12(tt,M,N) s(plus(activate(N),activate(M))) (2)
plus(N,0) N (3)
plus(N,s(M)) U11(tt,M,N) (4)
activate(X) X (5)

1.1 R is empty

There are no rules in the TRS. Hence, it is terminating.