TPTP Problem File: CSR119^3.p
View Solutions
- Solve Problem
%------------------------------------------------------------------------------
% File : CSR119^3 : TPTP v7.1.0. Released v5.3.0.
% Domain : Commonsense Reasoning
% Problem : Did someone like Bill in 2009?
% Version : Especial.
% English : During 2009 Mary liked Bill and Sue liked Bill. Is it the case
% that someone liked Bill during 2009?
% Refs : [BP10] Benzmueller & Pease (2010), Progress in Automating Hig
% : [Ben11] Benzmueller (2011), Email to Geoff Sutcliffe
% Source : [Ben11]
% Names :
% Status : Theorem
% Rating : 0.50 v7.1.0, 0.62 v7.0.0, 0.86 v6.4.0, 0.83 v6.3.0, 0.80 v6.2.0, 0.71 v6.1.0, 0.86 v5.5.0, 0.83 v5.4.0, 0.60 v5.3.0
% Syntax : Number of formulae : 5014 ( 0 unit;1435 type; 0 defn)
% Number of atoms : 20864 ( 406 equality;6086 variable)
% Maximal formula depth : 26 ( 4 average)
% Number of connectives : 16473 ( 0 ~; 77 |;1314 &;14029 @)
% ( 105 <=>; 948 =>; 0 <=; 0 <~>)
% ( 0 ~|; 0 ~&)
% Number of type conns : 1319 (1319 >; 0 *; 0 +; 0 <<)
% Number of symbols : 1441 (1435 :; 0 =)
% Number of variables : 2571 ( 0 sgn;2075 !; 494 ?; 2 ^)
% (2571 :; 0 !>; 0 ?*)
% ( 0 @-; 0 @+)
% SPC : TH0_THM_EQU_NAR
% Comments :
%------------------------------------------------------------------------------
%----Include SUMO axioms
include('Axioms/CSR005^0.ax').
%------------------------------------------------------------------------------
%----The extracted signature
thf(lBill_THFTYPE_i,type,(
lBill_THFTYPE_i: $i )).
thf(lMary_THFTYPE_i,type,(
lMary_THFTYPE_i: $i )).
thf(lSue_THFTYPE_i,type,(
lSue_THFTYPE_i: $i )).
thf(likes_THFTYPE_IiioI,type,(
likes_THFTYPE_IiioI: $i > $i > $o )).
thf(n2009_THFTYPE_i,type,(
n2009_THFTYPE_i: $i )).
%----The translated axioms
thf(ax,axiom,
( holdsDuring_THFTYPE_IiooI @ ( lYearFn_THFTYPE_IiiI @ n2009_THFTYPE_i )
@ ( ( likes_THFTYPE_IiioI @ lMary_THFTYPE_i @ lBill_THFTYPE_i )
& ( likes_THFTYPE_IiioI @ lSue_THFTYPE_i @ lBill_THFTYPE_i ) ) )).
%----The translated conjecture
thf(con,conjecture,(
? [Y: $i] :
( holdsDuring_THFTYPE_IiooI @ ( lYearFn_THFTYPE_IiiI @ n2009_THFTYPE_i ) @ ( likes_THFTYPE_IiioI @ Y @ lBill_THFTYPE_i ) ) )).
%------------------------------------------------------------------------------