Certification Problem

Input (TPDB TRS_Standard/SK90/2.25)

The rewrite relation of the following TRS is considered.

fib(0) 0 (1)
fib(s(0)) s(0) (2)
fib(s(s(x))) +(fib(s(x)),fib(x)) (3)
+(x,0) x (4)
+(x,s(y)) s(+(x,y)) (5)

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.
fib#(s(s(x))) +#(fib(s(x)),fib(x)) (6)
fib#(s(s(x))) fib#(s(x)) (7)
+#(x,s(y)) +#(x,y) (8)
fib#(s(s(x))) fib#(x) (9)

1.1 Dependency Graph Processor

The dependency pairs are split into 2 components.