Certification Problem

Input (COPS 335)

The rewrite relation of the following conditional TRS is considered.

lt(x,0) false
lt(0,s(x)) true
lt(s(x),s(y)) lt(x,y)
m(0,s(y)) 0
m(x,0) x
m(s(x),s(y)) m(x,y)
div(0,s(x)) pair(0,0)
div(s(x),s(y)) pair(0,s(x)) | lt(x,y) ≈ true
div(s(x),s(y)) pair(s(q),r) | lt(x,y) ≈ false, div(m(x,y),s(y)) ≈ pair(q,r)

Property / Task

Prove or disprove confluence.

Answer / Result

Yes.

Proof (by ConCon @ CoCo 2020)

1 Almost-orthogonal modulo infeasibility

The given (extended) properly oriented, right-stable, oriented 3-CTRS is almost-orthogonal modulo infeasibility, since all its conditional critical pairs are infeasible.