Problem: +(x,0()) -> x +(x,s(y)) -> s(+(x,y)) +(0(),y) -> y +(s(x),y) -> s(+(x,y)) inc(x) -> s(x) +(+(x,y),z) -> +(x,+(y,z)) +(x,y) -> +(y,x) inc(+(x,y)) -> +(inc(x),y) Proof: Open