Certification Problem

Input (TPDB TRS_Standard/Transformed_CSR_04/Ex18_Luc06_FR)

The rewrite relation of the following TRS is considered.

f(f(a)) f(g(n__f(n__a))) (1)
f(X) n__f(X) (2)
a n__a (3)
activate(n__f(X)) f(activate(X)) (4)
activate(n__a) a (5)
activate(X) X (6)

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(activate) = 5 weight(activate) = 5
prec(g) = 2 weight(g) = 4
prec(n__f) = 1 weight(n__f) = 4
prec(n__a) = 0 weight(n__a) = 2
prec(f) = 3 weight(f) = 4
prec(a) = 7 weight(a) = 6
all of the following rules can be deleted.
f(f(a)) f(g(n__f(n__a))) (1)
f(X) n__f(X) (2)
a n__a (3)
activate(n__f(X)) f(activate(X)) (4)
activate(n__a) a (5)
activate(X) X (6)

1.1 R is empty

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