Problem:
first(0(),X) -> nil()
first(s(X),cons(Y,Z)) -> cons(Y,first(X,Z))
from(X) -> cons(X,from(s(X)))
Proof:
Containment Processor: loop length: 1
terms:
from(X)
context: cons(X,[])
substitution:
X -> s(X)
Qed