Certification Problem

Input (TPDB SRS_Relative/Waldmann_19/random-50)

The relative rewrite relation R/S is considered where R is the following TRS

c(b(a(x1))) c(c(c(x1))) (1)
b(c(c(x1))) a(c(c(x1))) (2)

and S is the following TRS.

c(a(c(x1))) c(c(b(x1))) (3)
b(a(c(x1))) b(c(b(x1))) (4)
a(a(c(x1))) c(c(c(x1))) (5)
b(c(a(x1))) a(a(b(x1))) (6)

Property / Task

Prove or disprove termination.

Answer / Result

Yes.

Proof (by AProVE @ termCOMP 2023)

1 Rule Removal

Using the Knuth Bendix order with w0 = 1 and the following precedence and weight functions
prec(c) = 0 weight(c) = 1
prec(b) = 2 weight(b) = 1
prec(a) = 1 weight(a) = 1
all of the following rules can be deleted.
c(b(a(x1))) c(c(c(x1))) (1)
b(c(c(x1))) a(c(c(x1))) (2)
c(a(c(x1))) c(c(b(x1))) (3)
b(a(c(x1))) b(c(b(x1))) (4)
a(a(c(x1))) c(c(c(x1))) (5)
b(c(a(x1))) a(a(b(x1))) (6)

1.1 R is empty

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