Certification Problem

Input (TPDB TRS_Standard/AG01/#3.21)

The rewrite relation of the following TRS is considered.

times(x,plus(y,1)) plus(times(x,plus(y,times(1,0))),x) (1)
times(x,1) x (2)
plus(x,0) x (3)
times(x,0) 0 (4)

Property / Task

Prove or disprove termination.

Answer / Result

Yes.

Proof (by ttt2 @ termCOMP 2023)

1 Dependency Pair Transformation

The following set of initial dependency pairs has been identified.
times#(x,plus(y,1)) times#(1,0) (5)
times#(x,plus(y,1)) plus#(y,times(1,0)) (6)
times#(x,plus(y,1)) times#(x,plus(y,times(1,0))) (7)
times#(x,plus(y,1)) plus#(times(x,plus(y,times(1,0))),x) (8)

1.1 Dependency Graph Processor

The dependency pairs are split into 1 component.