Certification Problem

Input (COPS 322)

The rewrite relation of the following conditional TRS is considered.

split(x,nil) tp2(nil,nil)
split(x,cons(y,ys)) tp2(zs1,cons(y,zs2)) | split(x,ys) ≈ tp2(zs1,zs2), le(x,y) ≈ true
split(x,cons(y,ys)) tp2(cons(y,zs1),zs2) | split(x,ys) ≈ tp2(zs1,zs2), le(x,y) ≈ false
le(0,y) true
le(s(x),0) false
le(s(x),s(y)) le(x,y)

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.