705.64/299.39 MAYBE 705.64/299.39 705.64/299.39 Problem: 705.64/299.39 strict: 705.64/299.39 minus(x,0()) -> x 705.64/299.39 minus(s(x),s(y)) -> minus(x,y) 705.64/299.39 quot(0(),s(y)) -> 0() 705.64/299.39 quot(s(x),s(y)) -> s(quot(minus(x,y),s(y))) 705.64/299.39 plus(0(),y) -> y 705.64/299.39 plus(s(x),y) -> s(plus(x,y)) 705.64/299.39 minus(minus(x,y),z) -> minus(x,plus(y,z)) 705.64/299.39 app(nil(),k) -> k 705.64/299.39 app(l,nil()) -> l 705.64/299.39 app(cons(x,l),k) -> cons(x,app(l,k)) 705.64/299.39 sum(cons(x,nil())) -> cons(x,nil()) 705.64/299.39 sum(cons(x,cons(y,l))) -> sum(cons(plus(x,y),l)) 705.64/299.39 sum(app(l,cons(x,cons(y,k)))) -> sum(app(l,sum(cons(x,cons(y,k))))) 705.64/299.39 weak: 705.64/299.39 rand(x) -> x 705.64/299.39 rand(x) -> rand(s(x)) 705.64/299.39 705.64/299.39 Proof: 705.64/299.39 Open 705.64/299.39 EOF