The fragment {B,W,M} of combinatory logic contains fixed
point combinators. Otter found a proof, but the settings were
different from those used in theorems EQ-1 through EQ-5.
The important difference is that the initial set of support
consists of the denial only (so that all generated clauses are
negative), and paramodulation is allowed into both arguments
of equality literals. The following input file causes Otter
to find a proof of EQ-6 in about 27 seconds.
set(para_into).
clear(para_from_right).
set(order_eq).
assign(max_mem, 16000).
set(lex_rpo).
clear(print_kept).
lex([B,W,L,M,a(x,x),f(x)]).
lrpo_lr_status([a(x,x)]).
list(usable).
(x = x).
(a(a(a(B,x),y),z) = a(x,a(y,z))).
(a(a(W,x),y) = a(a(x,y),y)).
(a(M,x) = a(x,x)).
end_of_list.
list(sos).
(a(y,f(y)) != a(f(y),a(y,f(y)))) | $Ans(y).
end_of_list.
list(demodulators).
(a(a(a(B,x),y),z) = a(x,a(y,z))).
end_of_list.