YES Time: 0.067 Problem: Equations: TRS: 1() -> s(0()) 2() -> s(1()) 3() -> s(2()) 4() -> s(3()) 5() -> s(4()) 6() -> s(5()) 7() -> s(6()) 8() -> s(7()) 9() -> s(8()) max'C(0(),x) -> x max'C(s(x),s(y)) -> s(max'C(x,y)) app(empty(),X) -> X max(singl(x)) -> x max(app(singl(x),Y)) -> max2(x,Y) max2(x,empty()) -> x max2(x,singl(y)) -> max'C(x,y) max2(x,app(singl(y),Z)) -> max2(max'C(x,y),Z) Proof: AC-KBO Processor: precedence: 9 > 7 > 2 > 8 ~ 3 > max2 ~ max ~ singl ~ empty ~ 6 ~ 5 ~ 4 ~ s ~ 0 ~ 1 ~ max'C ~ app weight function: w0 = 2 w(9) = 15 w(max) = w(8) = 14 w(7) = 13 w(6) = 12 w(max2) = w(5) = 10 w(4) = 8 w(3) = 6 w(singl) = w(2) = 5 w(1) = 4 w(empty) = w(0) = w(app) = 2 w(s) = 1 w(max'C) = 0 problem: Equations: TRS: Qed