Problem: +(x,0()) -> x +(x,s(y)) -> s(+(y,x)) +(x,y) -> +(y,x) Proof: AT confluence processor Complete TRS T' of input TRS: +(x,0()) -> x +(x,s(y)) -> s(+(y,x)) +(0(),y) -> y +(s(x21),y) -> s(+(y,x21)) +(x,y) -> +(y,x) T' = (P union S) with TRS P:+(x,y) -> +(y,x) TRS S:+(x,0()) -> x +(x,s(y)) -> s(+(y,x)) +(0(),y) -> y +(s(x21),y) -> s(+(y,x21)) S is left-linear and P is reversible. CP(S,S) = 0() = 0(), s(x21) = s(+(0(),x21)), s(+(x173,0())) = s(x173), s(+(x175,s(x21))) = s(+(s(x175),x21)), s(y) = s(+(y,0())), s(+(0(),x178)) = s(x178), s(+(s(y),x180)) = s(+(y,s(x180))) CP(S,P union P^-1) = x = +(0(),x), y = +(0(),y), s(+(x197,x)) = +(s(x197),x), s(+(x199,y)) = +(s(x199),y), y = +(y,0()), x = +(x,0()), s(+(y,x202)) = +(y,s(x202)), s(+(x,x204)) = +(x,s(x204)) PCP_in(P union P^-1,S) = We have to check termination of S: Matrix Interpretation Processor: dim=1 interpretation: [+](x0, x1) = 3x0 + 3x1 + 3, [0] = 4, [s](x0) = x0 + 7 orientation: +(x,0()) = 3x + 15 >= x = x +(x,s(y)) = 3x + 3y + 24 >= 3x + 3y + 10 = s(+(y,x)) +(0(),y) = 3y + 15 >= y = y +(s(x21),y) = 3x21 + 3y + 24 >= 3x21 + 3y + 10 = s(+(y,x21)) problem: Qed