YES Time: 0.130 Problem: Equations: TRS: plus(x,0()) -> x plus(x,s(y)) -> s(plus(x,y)) minAC(0(),y) -> 0() minAC(s(x),s(y)) -> s(minAC(x,y)) maxAC(0(),y) -> y maxAC(s(x),s(y)) -> s(maxAC(x,y)) Proof: AC-KBO Processor: precedence: s ~ plus ~ 0 ~ maxAC ~ minAC weight function: [s](x0) = x0 + 2, [plus](x0, x1) = x0 + 2x1 + 8, [0] = 4, [maxAC](x0, x1) = x0 + x1 + 5, [minAC](x0, x1) = x0 + x1 + 5 problem: Equations: TRS: Qed